Is there any way to use a 'non generic' font in GBC and GDC?
As read here:
https://4js.com/online_documentation/fjs-fgl-3.10.00-manual-html/#fgl-topics/c_fgl_presentation_styles_font_family.html it says that a 'native font' needs to be installed in the local frontend... but, in CSS it's posible to specify an URL to render a 'native font' not installed on the frontend, something like this:
@font-face {
font-family: 'Open Sans Hebrew';
font-style: italic;
font-weight: 300;
src: url(opensanshebrew-lightitalic-webfont.eot);
src: url(opensanshebrew-lightitalic-webfont.eot?#iefix) format('embedded-opentype'),
url(opensanshebrew-lightitalic-webfont.woff) format('woff'),
url(opensanshebrew-lightitalic-webfont.ttf) format('truetype');
}
is it posible to use this feature in GBC? (or GDC + HTTP CONNECTION)