AFAIK,
@font-face is required for the definition of embedded fonts. For example:
Code:
@font-face {
font-family: 'DejaVu Sans';
src: url(../Fonts/DejaVuSans.ttf);
}
body {
font-family: 'DejaVu Sans', serif;
}
Note that if you define multiple variants of an embedded font, it might not be correctly displayed in BV, because of a Qt Framework bug.
See this
post for more information.