Thanks so much for your help, miro.bojic! I added the font directly to the project library as you suggested and everything work great! The code was altered to read the following:
@font-face
{
font-family:Tungsten;
src: url(assets/Tungsten-Medium.otf);
}
.customfont {
font-family:Tungsten;
color:#ffffff;
font-size:80px;
}
Thanks again for your help!

Originally Posted by
miro.bojic
Hi cabbas,
Since you manually placed the font in the project folder, project does not know that it belongs with the animation when you export it - whether it's the final animation or just a preview. There are 2 things you can do:
1. When you export the project, manually copy the font to the export folder again.
2. A better solution instead is to add the font to your project library by selecting the Library tab and then clicking the 'add new asset' button to import your font. Preview will not be available, but the font will be saved in the project asset folder. In your font CSS code you'll have to adjust your path to
Code:
/assets/Tungsten-Medium.otf
Let me know if this fixes the problem for you.