
// Font URL
$font-url: 'https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap';

// Font Family
$theme-fonts: (
    body: (
        font-family: "'Inter', sans-serif;",
    ),
    heading: (
        font-family: "'Exo', serif;",
    ),
    icon: (
        font-family: '"Font Awesome 5 Free"',
    )
);


// Font Size
$font-size: (
    body: (
        font-size: 16px,
    ),
);


// Line Height
$theme-lh: (
    body: (
        line-height: 1.75,
    ),
    heading: (
        line-height: 1.2,
    ),
);


// Font Weight
$font-weight: (
    fw: (
        extra-bold: 800,
        bold: 700,
        semi-bold: 600,
        medium: 500,
        regular: 400,
        light: 300,
    ),
);
