How can I change the product name font on Craft theme?

Hi There!

You could try editing the .card__heading class to include the Montserrat font like so:

  1. Open the component-card.css file in your Assets folder of your code files.

  2. Locate the .card__heading class and add the font-family attribute to the class like below.

  3. Click Save and refresh your site to see the changes.

.card__heading {
    font-family: 'Montserrat';
}