Hi,
If you look at the GTMetrix waterfall for one of my pages (all of my site), https://gtmetrix.com/reports/followtheboat.com/srrotMNC
you can see that the Montserrat font is being blocked. I have called this up in my CSS thus:
/* @import url(https://fonts.googleapis.com/css?family=Montserrat:400,700);
@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400);*/
@font-face {
font-family: 'Source Sans Pro';
src: url('https://followtheboat.com/wp-content/themes/x-child/fonts/SourceSansPro-Regular.eot');
src: url('https://followtheboat.com/wp-content/themes/x-child/fonts/SourceSansPro-Regular.eot?#iefix') format('embedded-opentype'),
url('https://followtheboat.com/wp-content/themes/x-child/fonts/SourceSansPro-Regular.woff2') format('woff2'),
url('https://followtheboat.com/wp-content/themes/x-child/fonts/SourceSansPro-Regular.woff') format('woff'),
url('https://followtheboat.com/wp-content/themes/x-child/fonts/SourceSansPro-Regular.ttf') format('truetype'),
url('https://followtheboat.com/wp-content/themes/x-child/fonts/SourceSansPro-Regular.svg#svgFontName') format('svg');
}
@font-face {
font-family: 'Montserrat';
src: url('https://followtheboat.com/wp-content/themes/x-child/fonts/Montserrat-Regular.eot');
src: url('https://followtheboat.com/wp-content/themes/x-child/fonts/Montserrat-Regular.eot?#iefix') format('embedded-opentype'),
url('https://followtheboat.com/wp-content/themes/x-child/fonts/Montserrat-Regular.woff2') format('woff2'),
url('https://followtheboat.com/wp-content/themes/x-child/fonts/Montserrat-Regular.woff') format('woff'),
url('https://followtheboat.com/wp-content/themes/x-child/fonts/Montserrat-Regular.ttf') format('truetype'),
url('https://followtheboat.com/wp-content/themes/x-child/fonts/Montserrat-Regular.svg#svgFontName') format('svg');
}
This may refer to another thread I started about caching within X. Despite updating my CSS to reflect the https address of google fonts (I had one of my font addresses set to just http), and despite purging all cache (even turned off cache on my CDN), Inspector is still pulling me up for an http address on google fonts, presumably in my CSS:
I don’t understand why Source Sans Pro is ok but not Montserrat. Or, rather, I understand my I’m being flagged, what I don’t understand is why the CSS is not being updated.
Any clues?