@charset "UTF-8";

/// A variable that outputs a Helvetica font stack.
///
/// @link https://goo.gl/uSJvZe
///
/// @type list

$font-stack-helvetica: (
    "Helvetica Neue",
    "Helvetica",
    "Arial",
    sans-serif,
);

/// A variable that outputs a Lucida Grande font stack.
///
/// @link https://goo.gl/R5UyYE
///
/// @type list

$font-stack-lucida-grande: (
    "Lucida Grande",
    "Lucida Sans Unicode",
    "Geneva",
    "Verdana",
    sans-serif,
);

/// A variable that outputs a Verdana font stack.
///
/// @link https://goo.gl/yGXWSS
///
/// @type list

$font-stack-verdana: (
    "Verdana",
    "Geneva",
    sans-serif,
);

/// A variable that outputs a system font stack.
///
/// @type list

$font-stack-system: (
    system-ui,
    -apple-system,
    blinkmacsystemfont,
    "Avenir Next",
    "Avenir",
    "Segoe UI",
    "Lucida Grande",
    "Helvetica Neue",
    "Helvetica",
    "Fira Sans",
    "Roboto",
    "Noto",
    "Droid Sans",
    "Cantarell",
    "Oxygen",
    "Ubuntu",
    "Franklin Gothic Medium",
    "Century Gothic",
    "Liberation Sans",
    sans-serif,
);

/// A variable that outputs a Garamond font stack.
///
/// @link https://goo.gl/QQFEkV
///
/// @type list

$font-stack-garamond: (
    "Garamond",
    "Baskerville",
    "Baskerville Old Face",
    "Hoefler Text",
    "Times New Roman",
    serif,
);

/// A variable that outputs a Georgia font stack.
///
/// @link https://goo.gl/wtzVPy
///
/// @type list

$font-stack-georgia: (
    "Georgia",
    "Times",
    "Times New Roman",
    serif,
);

/// A variable that outputs a Hoefler Text font stack.
///
/// @link https://goo.gl/n7U7zx
///
/// @type list

$font-stack-hoefler-text: (
    "Hoefler Text",
    "Baskerville Old Face",
    "Garamond",
    "Times New Roman",
    serif,
);

/// A variable that outputs a Consolas font stack.
///
/// @link https://goo.gl/iKrtqv
///
/// @type list

$font-stack-consolas: (
    "Consolas",
    "monaco",
    monospace,
);

/// A variable that outputs a Courier New font stack.
///
/// @link https://goo.gl/bHfWMP
///
/// @type list

$font-stack-courier-new: (
    "Courier New",
    "Courier",
    "Lucida Sans Typewriter",
    "Lucida Typewriter",
    monospace,
);

/// A variable that outputs a Monaco font stack.
///
/// @link https://goo.gl/9PgKDO
///
/// @type list

$font-stack-monaco: (
    "Monaco",
    "Consolas",
    "Lucida Console",
    monospace,
);
