I'd like to change the font for the callout text on the frontpage to a light, italic version of a Google font, Lato:
"Welcome! This is Angular, a very clean, responsive & super flexible WordPress portfolio theme that makes it easy to showcase your work"
I've updated the register-admin-options.php w/ the new Google font Lato I'd like to use, adding the line:
'Lato' => 'Lato',
to the rest of the font list. I'm guessing this single line includes the other font weights like light/bold.
I've also updated the css through the admin 'Quick CSS' textbox to:
#top .callout
{
font-family:Lato;
font-weight: 100;
font-style: italic;
}
In Safari (mac), it seems to replace the correct font, except for the "&" character which is still the default font
In Firefox (mac) it seems to use a regular/bold version instead of the light version (weight 100), with the "&" still rendered in the default font
My question is, what am I doing wrong?
Thanks!
(update: I also cleared cache on the browsers)














