Hi,
DS doesn't look at fonts. If it can be run on your IE browser it will be visible in DS. The canvas is the IE browser rendering your application. So it is more a question if the browser can show your font.
often it is a problem if a font is not available on a user's computer.
In that case you can use BASE64 endoding in your custom CSS file to manually encode the font into your CSS . You can do this by referencing a file or actually inserting code to show the font.
example :
@font-face{
font-family: Gentium;
src:url(fonts/gentium.eot);
}
in the rest of the CSS you then can refer to Gentium.