/* typography.css */
/* Define font family */
:root {
    --font-family: 'Lora', serif;
    --font-family-2: 'Decalotype', sans-serif;
    --font-family-3: 'Tarif', sans-serif;
}

/* Define font weights */
:root {
    --font-weight-extra-light: 200;
    --font-weight-light: 300;
    --font-weight-book: 350;
    --font-weight-regular: 400;
    --font-weight-semi-bold: 500;
    --font-weight-bold: 700;
    --font-weight-extra-bold: 800;
    --font-weight-black: 900;
}

/* Define font sizes */
:root {
    --font-size-h1: 80px; /* 5rem */
    --font-size-h2: 42px; /* 2.625rem */
    --font-size-h3: 32px; /* 2rem */
    --font-size-body1: 32px; /* 2rem */
    --font-size-body2: 28px; /* 1.75rem */
    --font-size-subtitle1: 32px; /* 2rem */
    --font-size-subtitle2: 20px; /* 1.25rem */
    --font-size-label-medium: 30px; /* 1.875rem */
}

body {
    margin: 0;
}
