/* ─────────────────────────────────────────────
   Peyda font family
   ──────────────────────────────────────────────
   Place these files in the SAME folder as this CSS:

     assets/fonts/Peyda-Thin.ttf         (weight 100)
     assets/fonts/Peyda-ExtraLight.ttf   (weight 200)
     assets/fonts/Peyda-Light.ttf        (weight 300)
     assets/fonts/Peyda-Regular.ttf      (weight 400)
     assets/fonts/Peyda-Medium.ttf       (weight 500)
     assets/fonts/Peyda-SemiBold.ttf     (weight 600)
     assets/fonts/Peyda-Bold.ttf         (weight 700)
     assets/fonts/Peyda-ExtraBold.ttf    (weight 800)
     assets/fonts/Peyda-Black.ttf        (weight 900)

   You can copy them from the Flutter project at:
     <project>/assets/fonts/Peyda-*.ttf
───────────────────────────────────────────── */

@font-face {
    font-family: 'Peyda';
    font-weight: 100;
    font-style: normal;
    font-display: swap;
    src: url('Peyda-Thin.ttf') format('truetype');
}
@font-face {
    font-family: 'Peyda';
    font-weight: 200;
    font-style: normal;
    font-display: swap;
    src: url('Peyda-ExtraLight.ttf') format('truetype');
}
@font-face {
    font-family: 'Peyda';
    font-weight: 300;
    font-style: normal;
    font-display: swap;
    src: url('Peyda-Light.ttf') format('truetype');
}
@font-face {
    font-family: 'Peyda';
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    src: url('Peyda-Regular.ttf') format('truetype');
}
@font-face {
    font-family: 'Peyda';
    font-weight: 500;
    font-style: normal;
    font-display: swap;
    src: url('Peyda-Medium.ttf') format('truetype');
}
@font-face {
    font-family: 'Peyda';
    font-weight: 600;
    font-style: normal;
    font-display: swap;
    src: url('Peyda-SemiBold.ttf') format('truetype');
}
@font-face {
    font-family: 'Peyda';
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    src: url('Peyda-Bold.ttf') format('truetype');
}
@font-face {
    font-family: 'Peyda';
    font-weight: 800;
    font-style: normal;
    font-display: swap;
    src: url('Peyda-ExtraBold.ttf') format('truetype');
}
@font-face {
    font-family: 'Peyda';
    font-weight: 900;
    font-style: normal;
    font-display: swap;
    src: url('Peyda-Black.ttf') format('truetype');
}
