
// font url

$font-url: 'https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700;800&display=swap';


// font family
$font-family: (
    'ff': (
        'body': "'Inter', sans-serif",
        'heading': "'Inter', sans-serif",
        'p': "'Inter', sans-serif",
        'poppins': "'Poppins', sans-serif",
    )
);


// font size
$font-size: (
    'fz': (
        'body': 16px,
        'p': 16px,
    )
);


