Hi,
The font setting is listed only Google fonts. It is not possible to add custom font with Google font in selector.
You need upload the custom font files(e.g. Baskerville) to the site server.
define the font by the custom css code:
@font-face {
font-family: Baskerville; font-weight: normal; font-style: normal;
src: url('styles/fonts/Baskerville.woff') format('woff'), url('styles/fonts/Baskerville.ttf') format('truetype');
}
if you want to use it as heading font, set the font for class like:
h1,h2,h3,h4,h5,h6 {font-family: Baskerville;}
Regards!
Bwsm – uiueux.com – Twitter – Facebook