/ common / sass / variables / typography.scss
typography.scss
 1  $font-family-sans-serif: 'Lato', sans-serif;
 2  $font-family-serif: Georgia, 'Times New Roman', Times, serif;
 3  $font-family-monospace: 'Roboto Mono', Menlo, Monaco, Consolas, 'Courier New', monospace;
 4  $font-family-base: $font-family-sans-serif;
 5  
 6  $base: 15;
 7  $font-size-pixels: $base + px;
 8  $font-size-pixels-xl: $base + 1px; // for xl screens
 9  $font-size-pixels-sm: $base + px; // for small screens
10  
11  $font-size-large-bump: 2.25rem; // 33.75
12  $font-size-large: 1.9rem; // 28.5
13  $font-size-medium-bump: 1.5rem; // 22.5
14  $font-size-medium: 1.25rem; // 20
15  $font-size-bump-more: 1.15rem; // 17.25
16  $font-size-bump: 1.07rem; // 16.05
17  $font-size-base: 1rem; // 15
18  $font-size-small: 0.9rem; // 13.8
19  $font-size-xs-bump: 0.8rem; // 12.8
20  $font-size-xs: 0.75rem; // 12
21  
22  $font-size-h1: $font-size-large-bump;
23  $font-size-h2: $font-size-large;
24  $font-size-h3: $font-size-medium-bump;
25  $font-size-h4: $font-size-medium;
26  $font-size-h5: $font-size-bump-more;
27  $font-size-h6: $font-size-bump;
28  
29  $line-height-base: 1.4;
30  $line-height-computed: 1.4;
31  
32  $headings-font-family: inherit;
33  $headings-font-weight: 700;
34  $headings-line-height: 1.2;
35  $headings-color: inherit;
36  
37  // Are these used? From v3
38  // $icon-font-path: "../fonts/";
39  // $icon-font-name: "glyphicons-halflings-regular";
40  // $icon-font-svg-id: "glyphicons_halflingsregular";