In my mini web application, I wonder whats the best way of serving the 600+ fonts from google web fonts library to my users, primary concerns are the font file sizes, ajax calls delay.
Two possible options that come to mind are:
Ajax calls to download the font when the user scrolls through the dropdown list of those 600 fonts.
Create & store images of fonts on server, only retrieve those images when the user scrolls down the drop down list, subsequently, when the user clicks on a particular image, only then does the font file download locally.
Edit: To put the question more clearly forward, I am wondering whats the best option I have of serving 600+ fonts to a user of my font web app?
Thanks