Good idea Otto. That's probably a better option than TypeKit.
I'm not sure why, but the Google fonts recommend inserting a full link request in your HTML whereas I suspect you would be much better off just inserting the @font-face rule directly to your sites main CSS file, something like this:
Code:
@media screen {
@font-face {
font-family: 'Cantarell';
font-style: normal;
font-weight: normal;
src: local('Cantarell'), url('http://themes.googleusercontent.com/font?kit=tGao7ZPoloMxQHxq-2oxNA') format('truetype');
}
} You could also serve the fonts direct from your own server, but it would be a good idea to rely on the Google provided hosting to make sure they load nice and snappy for users who already have them cached from other sites.