Unfortunately font files are not supported with Obsidian Publish. There are a few workarounds:
.woff
or .ttf
I chose option 2.
base64 -i bembo-webfont.ttf | pbcopy
Replace <BASE64_STRING_HERE>
@font-face {
font-family: 'bembo';
src: url(data:font/truetype;charset=utf-8;base64,<BASE64_STRING_HERE>) format('truetype');
font-weight: normal;
font-style: normal;
}
body {
--font-text-theme: 'bembo';
}