// Font URL
$font-url: "https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap";

//Font Family
$font-family: (
    "ff": (
        "body": "'Outfit', sans-serif",
        "heading": "'Outfit', serif",
        "p": "'Outfit', sans-serif",
    ),
);

// Font Weight
$font-scale: (
    "fw": (
        "normal": normal,
        "thin": 100,
        "elight": 200,
        "light": 300,
        "regular": 400,
        "medium": 500,
        "sbold": 600,
        "bold": 700,
        "ebold": 800,
        "black": 900,
    ),
);

// Font Size
$font-size: (
    "fs": (
        "body": 16,
        "p": 16,
        "h1": 64,
        "h2": 40,
        "h3": 24,
        "h4": 20,
        "h5": 16,
        "h6": 14,
    ),
);
