The fonts in question are used in the EVO template. The simple way to remove these fonts is to delete these two lines from /templates/tmpl_evo/_header.html
<link href='//fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900' rel='stylesheet' type='text/css' />
<link href='//fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800' rel='stylesheet' type='text/css' />
Since the font will no longer be available wherever they are called, the browser will automatically use the next specified font family.
That's the simple way. If you want to be thorough, search the css files for 'Roboto' and 'Open Sans', and delete them from the list wherever they are specified by the font-family attribute.
As an example, here's an excerpt from /templates/tmpl_evo/css/default.css
/* fonts */
.bx-def-font,
.bx-def-font-inputs {
font-family: Roboto, Noto, Open Sans, Helvetica Neue, Helvetica, sans-serif;
color: rgba(0, 0, 0, 0.7);
}
Delete the text in red.
I should note, that I don't know why the 'Noto' Google font is even listed here, since It doesn't seem to be loaded anywhere.
My opinions expressed on this site, in no way represent those of Boonex or Boonex employees.