ok, let me just clear any possible misunderstandings:
Just like HTML pages, you can not use any custom font you have. That would require the font to be embedded into the SWF when it is exported, and obviously we can't be embedding all fonts into the gallery.
Therefore, just like HTML, you need to select from a group of globally accessible fonts that the user has on their computer. That list would usually be:
Verdana, Arial, "Times New Roman", Times, Sans Serif, Serif, "Courier New", Georgia, "Comic Sans MS", Garamond, Tahoma, "Trebuchet MS", Candara*, Constantia*, Cambria*
* Only available for Vista computers or computers with Office 2007.
So then to answer your question, if you want to change the font globally, locate the setting at the top of your theme CSS stylesheet file:
body {
font-size: 13px;
font-family: Candara, Arial, "Times New Roman", Times, serif;
color: #CCCCCC;
}
As you can see, it is using a "font-family" so to make sure that if the computer does not have the first font, it will try the second font so you are sure the text will display at least. The
body class above, works for the entire gallery, unless different fonts are set on other sub-classes of the document.
Does that make it clear?