If I import Google font CSS inside a @media print
section, when will browsers fetch the font files? Only when printing? Or more eagerly?
@media print {
@import url('https://fonts.googleapis.com/css?family=Mate');
...
}
I'm wondering if users will get a download penalty even when they are not printing.
I've tried to search and can't seem to find an answer. When I used Chrome Dev Tools, it didn't seem to fetch the font at all! I think because I already have it installed locally.