If a customer is asking for a font that isn't 'Web Ready' or available via Google Fonts there is now an option available. The customer MUST provide the OTF or TTF file for the font. This is because there are many fonts out there named the same with different styles. We won't guess which one they want specifically, they need to provide this.
From here, Customer Service will send the request to Graphics with the file type attached.
The OTF and TTF will have to be convert into other file types, mostly an woff or woff2 file. This can be done through Creative Fabrica.
Upload the file types TTF, WOFF and/or WOFF2 in their file manager.
Here is the CSS styling needed:
<style>
@font-face {
font-family: 'Tiffany Lt BT';
src: url("/webapp/GetFile?fid={6268d44d-44b3-49d6-ad30-934187a5cc2f}") format("truetype"),
url("/webapp/GetFile?fid={1ec50c6d-308d-4583-8d8e-1337b78f24fe}") format("woff2");
}
.NotWebFont {
font-family: 'Tiffany Lt BT', serif;
}
</style>