/* ============================================================
   SELF-HOSTED FONTS — fonts.css
   Archivo — downloaded from Google Fonts and hosted locally.
   Place woff2 files in assets/fonts/

   To download:
   Visit https://fonts.google.com/specimen/Archivo
   Download the family, convert to woff2 if needed,
   and place the files below in assets/fonts/

   Files needed:
     Archivo-Light.woff2         (300)
     Archivo-LightItalic.woff2   (300 italic)
     Archivo-Regular.woff2       (400)
     Archivo-Italic.woff2        (400 italic)
     Archivo-Medium.woff2        (500)
     Archivo-SemiBold.woff2      (600)
     Archivo-Bold.woff2          (700)
     Archivo-BoldItalic.woff2    (700 italic)
   ============================================================ */

/* 300 — Light */
@font-face {
  font-family: 'Archivo';
  src: url('../fonts/Archivo-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* 300 italic */
@font-face {
  font-family: 'Archivo';
  src: url('../fonts/Archivo-LightItalic.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

/* 400 — Regular */
@font-face {
  font-family: 'Archivo';
  src: url('../fonts/Archivo-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* 400 italic */
@font-face {
  font-family: 'Archivo';
  src: url('../fonts/Archivo-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* 500 — Medium */
@font-face {
  font-family: 'Archivo';
  src: url('../fonts/Archivo-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* 600 — SemiBold */
@font-face {
  font-family: 'Archivo';
  src: url('../fonts/Archivo-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* 700 — Bold */
@font-face {
  font-family: 'Archivo';
  src: url('../fonts/Archivo-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* 700 italic */
@font-face {
  font-family: 'Archivo';
  src: url('../fonts/Archivo-BoldItalic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
