The words “Le Carrefour du pain” is your .site-description
element (aka “tagline”) and the font and italic style are being defined in this part of the CSS:
.site-description {
font-family: Lora,Baskerville,Georgia,Times,serif;
font-style: italic;
}
I used a browser inspector to see where this was coming from – see the screenshot here:
There are two parts to adding a new font to a theme, as Tahoe Rock pointed out above:
1. You need to enqueue the font itself in the theme. Using a Google Font plugin as Tahoe Rock mentioned earlier is an easy way to do that in WordPress.
2. You need to add custom CSS to style the element you want to appear in that font. I see that you have a custom CSS plugin active, but there’s no code in it yet. After you install your Google Font plugin and follow the directions to enqueue Montserrat, you can then add this custom CSS to your theme:
.site-description {
font-family: Montserrat, Helvetica, Arial sans-serif;;
}
It’s always good to specify some “fallback fonts” that are likely to be installed on a viewer’s computer so just in case the Google font has trouble loading, they will at least see something in a similar style.
Let us know how it goes!
-
This reply was modified 8 years, 2 months ago by Kathryn Presner. Reason: fixed typo