Fonts

We’ve done our best to keep fonts simple — there’s normal text (paragraphs, captions, lists, and table data) and headings (which include table headers). We’ve defined variables for both.

$font-family-normal-text: $font-family-1;
$font-family-headings: $font-family-2;

Font Family 1 and Font Family 2 are defined in the _theme-vars/_fonts.scss partial within the Theme Editor’s Styles folder. Depending on your theme’s fonts, you’ll either find two declarations (Example 1) or more if there are separate bold and italic font variations (Example 2).

Example 1

$font-family-1: "Zilla Slab", Georgia, "Times New Roman", Times, serif;
$font-family-2: "Josefin Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;

Example 2

$font-family-1: "AvenirNextLTW01-Regular", "Helvetica Neue", Helvetica, Arial, sans-serif;
$font-family-1-italic: "AvenirNextLTW01-Italic", "Helvetica Neue", Helvetica, Arial, sans-serif;
$font-family-1-bold: "Avenir Next LT W01 Demi", "Helvetica Neue", Helvetica, Arial, sans-serif;
$font-family-1-bold-italic: "AvenirNextLTW01-DemiIta", "Helvetica Neue", Helvetica, Arial, sans-serif;
$font-family-2: "AbrilW01-FatfaceRegular", Georgia, "Times New Roman", Times, serif;