Hi mmatalon,
It’s quite easy to enable beautiful google font in your site.
1. Open templatesja_kyanite_iilayoutsblockshead.php and add this line:
<link rel=”stylesheet” type=”text/css” href=”http://fonts.googleapis.com/css?family=Tangerine”>
Notice that in this line we can see family=Tangerine, to select another google font you can refer to http://www.google.com/webfonts. You can add as many fonts as you want.
2. Open templatesja_kyanite_iicsstemplate.css and add the font you want. For example, you wanna change the font of the article heading, simply add this line:
h2.contentheading {
font-family: ‘Tangerine’, serif;
font-size:48px;
}