Hello mate,
try to do next, find this string in your index.php file (in my template it's on line 35)
?php if(($s5_fonts_highlight != "Arial") || ($s5_fonts_highlight != "Helvetica")|| ($s5_fonts_highlight != "Sans-Serif")) { ?>
<link rel="stylesheet" type="text/css" href="
http://fonts.googleapis.com/css?family=<?php echo $s5_fonts_highlight ?>" />
<?php } ?>
and insert this
&subset=latin,latin-ext just after <?php echo $s5_fonts_highlight ?>
so it should look exactly like this:
?php if(($s5_fonts_highlight != "Arial") || ($s5_fonts_highlight != "Helvetica")|| ($s5_fonts_highlight != "Sans-Serif")) { ?>
<link rel="stylesheet" type="text/css" href="
http://fonts.googleapis.com/css?family=<?php echo $s5_fonts_highlight ?>&subset=latin,latin-ext" />
<?php } ?>
This little trick worked for me, but maybe good people from Shape5 have more elegant solution .
P.S.
S5 Thank you for great template(s) 