How is one supposed to load google fonts, Do I really have to download and package every font I use with my app? I\'m trying to avoid packaging the fonts since they are so m
You should be able to just modify your manifest's content security policy to allow from the google font site like so:
"content_security_policy": "script-src 'self' http://fonts.googleapis.com; object-src 'self'"
See the similar question here: Google Chrome Extensions with Typekit Fonts