Changing Fonts

You can add/change the site font, from all fonts used from Google Web Font Services, with the one that suits you the best. You can find the font code in the head a tag of all HTML files:

<!-- font -->
<link href="https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i" rel="stylesheet">

To include a new font you can simply add another line like this:

<link href="https://fonts.googleapis.com/css?family=Roboto:400,400i,500,500i,700,700i" rel="stylesheet">

Or add an | separator and paste Roboto:400,300,800,700,600 after default website fonts link.

CSS

Now open css/style.css and change your font family with the current.

To change the fonts, you will need to edit the above links with your custom font, if you plan to use a Google Font or remove it completely. If you plan to use a self-hosted font, here is an example of using Self Hosted Fonts

SCSS

Now open scss/variables.scss and change your font family with the current.

To change the fonts, you will need to edit the above links with your custom font, if you plan to use a Google Font or remove it completely. If you plan to use a self-hosted font, here is an example of using Self Hosted Fonts

@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');

// Font Variables
$font-base: 'Poppins', sans-serif;
$font-heading: 'Poppins', sans-serif;

// Styles
body {
  font-family: $font-base;
  font-weight: normal;
}
Suggest Edit