Hi.
- Static text fields: Animate exports the texts as raw vector shapes or bitmaps depending on your publish settings. The disadvantage of static texts is that you cannot change them with code and they may cause a negative impact on performance if you use a lot of them.
- Dynamic text fields: you get actual texts. You can change them with code, they may be better for performance, but you're gonna have to provide the font families using one of the following methods:
- Web fonts:
Using Adobe Fonts in Animate
Using Google fonts in Animate CC
- CSS @font-face Rule
CSS @font-face Rule
Example:
@font-face
{
font-family: 'EthnocentricRg-Regular';
src: url("fonts/ethnocentric rg.ttf");
}
On Windows, the font-family property value should be the name in the title of the font dialog window or in the Font name field, like in the image below.

- CSS Web Safe Fonts
CSS Web Safe Fonts
I hope this helps.
Regards,
JC