////
/// Typography settings.
///
/// @group  Settings
/// @author Lee Anthony <seothemeswp@gmail.com>
/// @link   https://seothemes.com/themes/genesis-starter-theme
////

// Font sizes
$base--font-size: 1.6rem;

$font-size--h1: modular-scale(5, $base--font-size, $minor-third);
$font-size--h2: modular-scale(4, $base--font-size, $minor-third);
$font-size--h3: modular-scale(3, $base--font-size, $minor-third);
$font-size--h4: modular-scale(2, $base--font-size, $minor-third);
$font-size--h5: modular-scale(1, $base--font-size, $minor-third);
$font-size--h6: modular-scale(0, $base--font-size, $minor-third);

//$font-sizes: (
//	h1: $font-size--h1,
//	h2: $font-size--h2,
//	h3: $font-size--h3,
//	h4: $font-size--h4,
//	h5: $font-size--h5,
//	h6: $font-size--h6,
//) !default;

$font-sizes: (
	h1: 2.3em,
	h2: 1.8em,
	h3: 1.5em,
	h4: 1.3em,
	h5: 1.2em,
	h6: 1.1em,
);

// Font families
$base--font-family: "Helvetica", $font-stack-system;

$font-family--heading: $base--font-family;
$font-family--code: $font-stack-consolas;

// Font weights
$font-weight--extralight: 200;
$font-weight--light: 300;
$font-weight--regular: 400;
$font-weight--medium: 500;
$font-weight--semibold: 600;
$font-weight--bold: 700;

// Line height
$base--line-height: modular-scale(0, $golden);

$line-height--heading: modular-scale(-1, $golden);
