// =============================================================================
// :: Typography
// =============================================================================
/**
 * This file contains all the settings concerning the base typography. These
 * should NOT be used to define the typography of a standalone component,
 * but should provide a reusable system.
 * Opt to stay within the large - base and small values, using 1x, 2x, ... to
 * indicate a multiplier.
 */

// =============================================================================
// :: Font families
// =============================================================================
@import url("https://use.typekit.net/jah4efv.css");

$font-family-primary: ("sofia-pro", "Arial", sans-serif);
$font-family-secondary: ("Calibri", "Arial", sans-serif);

// =============================================================================
// :: Font weights
// =============================================================================
/**
 * Font weight based on:
 * https://bigelowandholmes.typepad.com/bigelow-holmes/2015/07/
 */
$font-weight-ultrabold: 700;
$font-weight-bold: 600;
$font-weight-medium: 500;
$font-weight-normal: 400;

// =============================================================================
// :: Font sizes
// =============================================================================
$font-size-5x-large: 6rem;
$font-size-4x-large: 5rem;
$font-size-3x-large: 3.5rem;
$font-size-2x-large: 3rem;
$font-size-1x-large: 2.5rem;
$font-size-base: 2rem;
$font-size-1x-small: 1.8rem;
$font-size-2x-small: 1.5rem;
$font-size-3x-small: 1.2rem;

// =============================================================================
// :: Line heights
// =============================================================================
$line-height-2x-large: 1.6;
$line-height-1x-large: 1.4;
$line-height-base: 1.1;

// =============================================================================
// :: Letter spacing
// =============================================================================
$letter-spacing-base: 0.1rem;
