Hi Sara,
If you would like to add this font then you have to customize some code. Before customizing code first of all create a child theme. So that your code will not be lost while you update the theme to the newer version.
Here is the instruction how to create a Child Theme
and download the font FrentehH1
from here and paste that font folder inside the child theme folder that you have created then add the below code in the style.css of the child theme.
@font-face {
font-family: 'frente_h1regular';
src: url('FrenteH1-Regular-webfont.eot');
src: url('FrenteH1-Regular-webfont.eot?#iefix') format('embedded-opentype'),
url('FrenteH1-Regular-webfont.woff') format('woff'),
url('FrenteH1-Regular-webfont.ttf') format('truetype'),
url('FrenteH1-Regular-webfont.svg#frente_h1regular') format('svg');
font-weight: normal;
font-style: normal;
}
body, input, textarea {
font-family: 'FrenteH1', sans-serif;
}
Note: Please correct the font path above in src URL:
Thank you!