When loading custom fonts from Google they offer a way for you to optimize them: https://developers.google.com/webfonts/docs/getting_started#Optimizing_Requests
Meaning if you are you using a custom font for just a header, rather than loading the whole font, you can tell it what letters you need so not to load the entire font alphabet. So far so good.
However, in the example it only has one font style. How do you do it with two?
For instance I'm using this to load to styles of a font:
The normal 400 I use for a lot of text, but the 400italic is only used for one short header.
If I do:
Will it load the entire 400 and just the "sample header" for 400italic like I want or will it do something else?