@charset 'UTF-8';

////
/// Flavor SCSS Grid-system Options Typography
/// @group grid-system-options-typography
/// @author blackmirror1980
////


// Fonts
//
// Font, line-height, and color for body text, headings, and more.
// stylelint-disable value-keyword-case
$font-family-base: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol' !default;

// stylelint-enable value-keyword-case
$font-size-base: 10px !default; // Assumes the browser default, typically `16px`

$font-weight-base: 400 !default;
$line-height-base: 1.5 !default;

$font-weight-extra-light: 200 !default;
$font-weight-light: 300 !default;
$font-weight-normal: $font-weight-base !default;
$font-weight-semi-bold: 500 !default;
$font-weight-medium: $font-weight-semi-bold !default;
$font-weight-bold: 700 !default;
$font-weight-black: 900 !default;
