Is there a way to use custom fonts in an Apple tvOS TVML
based application? I've tried the @font-face
at-rule to no avail.
<document>
<head>
<style>
@font-face {
font-family: 'My Awesome Font';
font-weight: 600;
src: url("${this.BASEURL}/resources/fonts/awesome-font-bold.otf");
}
</style>
</head>
...
</document>