The prominent "C" at the center of the page, as well as the H1 ('Choose The Right...) should be displayed using the "Pirulen" font-family.
My initial attempt was to implement the traditional @font-face method for CSS, followed by a more advanced approach using WEBFONT GENERATOR and incorporating all the generated files into the MyFonts folder.
CSS
@font-face {
font-family: 'pirulenregular';
src: url('/www/wp-content/themes/virtue-child/MyFonts/pirulen_rg-webfont.eot');
src: url('/www/wp-content/themes/virtue-child/MyFonts/pirulen_rg-webfont.eot?#iefix') format('embedded-opentype'),
url('/www/wp-content/themes/virtue-child/MyFonts/pirulen_rg-webfont.woff2') format('woff2'),
url('/www/wp-content/themes/virtue-child/MyFonts/pirulen_rg-webfont.woff') format('woff'),
url('/www/wp-content/themes/virtue-child/MyFonts/pirulen_rg-webfont.ttf') format('truetype'),
url('/www/wp-content/themes/virtue-child/MyFonts/pirulen_rg-webfont.svg#pirulenregular') format('svg');
font-weight: normal;
font-style: normal;
}
Despite these efforts, the desired outcome has not been achieved yet.