Thanks Matt
We only (typically) load one font-family locally as the Template font, or "Isotope" font in this case
templates\rt_isotope\scss\configuration\_typography.scss
What are the difference between loading the font locally and using Google service, one is better than the other ?
and
If we choose external fonts can we unload the local font call (I guess by commenting out the font family in that _typography.scss file?), I wonder if doing that will have a beneficial impact on the speed of the site?
I personally make an override of this file templates\rt_isotope\scss\configuration\_typography.scss in custom > scss\configuration\_typography.scss ( Just in case I want to change something in there....
You can not specify a font-family for specific items, globally, in G5...
I did want to have the “$font-family-title” apply to the Menu of Isotope. I did an override of the scss/isotope/_typography.scss to custom/scss/isotope/_typography.scss and add —>
// Navigation
.g-menu-item-title {
font-family: get-font-family($font-family-title);
}
// Headings, navigation
h1, h2, h3, h4, h5, body .g-main-nav {
font-family: get-font-family($font-family-title);
}
I also take out the control of the font-weight in this override to bring the control to my custom.scss
What do you think?