Not as far as I can tell. If you want to use a certain font, use CSS and you can have fall-back:
Code:
.myClass {
font-family: Futura, Helvetica, serif
}
Put your preferred fonts first, then end with serif, san-serif, monospace, depending on the font variant you were hoping for. so that there will always be a preferred font.
|