File: D:/HostingSpaces/SBogers10/boldt.komma.pro/resources/sass/site/1-Settings/_settings.typography.scss
/** =====================================================================================
* Defines the typographic baseline.
* We define every size in pixels, the underlying system converts the
* respective units to the responsive REM value.
===================================================================================== */
/**
* Our base font-size and line-height
*/
$base-font-size: 18 !default;
$base-line-height: 28 !default;
$line-height-ratio: $base-line-height/$base-font-size !default;
$font-sizes: (
x2-small: 13,
x-small: 14,
small: 16,
base: $base-font-size,
mid: 20,
mid-large: 24,
large: 28,
x-large: 32,
x2-large: 36,
x3-large: 48,
x4-large: 55
);
/**
* Here we assign short names for the font families
*/
$font-system: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
$font-overpass: 'Overpass', sans-serif;
$font-industry: 'industry', sans-serif;
$font-families: (
base: $font-overpass,
primary: $font-industry,
// Fallback font
system: $font-system
);