I've a question about webfonts and how they get loaded. The thing is, I have to use the Calibri font. It's a regular windows font.
So the font stack could be something like:
font-family: Calibri, Candara, Arial, sans-serif;
However there is a webfont of Calibri but it's pretty pricey. So my idea was to build the font stack like this:
font-family: Calibri, 'Calibri', Candara, Segoe, "Segoe UI", Optima, Arial, sans-serif;
So the first font should be the local one and the second the webfont. So if the local one is not found, it loads the webfont.
The font is priced for xxx views. The question is, would this work and if so would this save me some font loads?