Hi @grazianomancini
Unfortunately you can’t add it to the font select as default, you’d need to include the font manually, and then you can override the font output for headings etc with this css:
body, h6, #sidebar .widget-heading h3, #header-search input, .header-items h3.phone-number, .related-wrap h4, #comments-list > h3, .item-heading h1, .sf-button, button, input[type="submit"], input[type="reset"], input[type="button"], .wpb_accordion_section h3, #header-login input, #mobile-navigation > div, .search-form input {
font-family: 'YOUR_FONT', Arial, Helvetica, Tahoma, sans-serif;
}
h1, h2, h3, h4, h5, .custom-caption p, span.dropcap1, span.dropcap2, span.dropcap3, span.dropcap4, .wpb_call_text, .impact-text, .testimonial-text, .header-advert {
font-family: 'YOUR_FONT', Arial, Helvetica, Tahoma, sans-serif;
}
nav .menu li {
font-family: 'YOUR_FONT', Arial, Helvetica, Tahoma, sans-serif;
}
– Ed