/* Self-hosted font faces for Cips.
   Restored file — index.html already linked to "fonts.css" and the woff2
   files already exist under assets/fonts/, but this stylesheet itself was
   missing from the deploy package, so the browser was 404-ing this request
   on every load and silently falling back to the OS default font the whole
   time (the exact "flash of default font" the code comment in index.html
   says this file exists to avoid).
   No new font choices, weights, or design decisions here — this only wires
   up the family/weight/file pairings that styles.css already assumes. */

@font-face{
  font-family:'Inter';
  src:url('assets/fonts/inter-400.woff2') format('woff2');
  font-weight:400; font-style:normal; font-display:swap;
}
@font-face{
  font-family:'Inter';
  src:url('assets/fonts/inter-500.woff2') format('woff2');
  font-weight:500; font-style:normal; font-display:swap;
}
@font-face{
  font-family:'Inter';
  src:url('assets/fonts/inter-600.woff2') format('woff2');
  font-weight:600; font-style:normal; font-display:swap;
}

@font-face{
  font-family:'Space Grotesk';
  src:url('assets/fonts/space-grotesk-400.woff2') format('woff2');
  font-weight:400; font-style:normal; font-display:swap;
}
@font-face{
  font-family:'Space Grotesk';
  src:url('assets/fonts/space-grotesk-500.woff2') format('woff2');
  font-weight:500; font-style:normal; font-display:swap;
}
@font-face{
  font-family:'Space Grotesk';
  src:url('assets/fonts/space-grotesk-600.woff2') format('woff2');
  font-weight:600; font-style:normal; font-display:swap;
}
@font-face{
  font-family:'Space Grotesk';
  src:url('assets/fonts/space-grotesk-700.woff2') format('woff2');
  font-weight:700; font-style:normal; font-display:swap;
}

@font-face{
  font-family:'JetBrains Mono';
  src:url('assets/fonts/jetbrains-mono-500.woff2') format('woff2');
  font-weight:500; font-style:normal; font-display:swap;
}
@font-face{
  font-family:'JetBrains Mono';
  src:url('assets/fonts/jetbrains-mono-600.woff2') format('woff2');
  font-weight:600; font-style:normal; font-display:swap;
}

@font-face{
  font-family:'Amiri';
  src:url('assets/fonts/amiri-400.woff2') format('woff2');
  font-weight:400; font-style:normal; font-display:swap;
}
@font-face{
  font-family:'Amiri';
  src:url('assets/fonts/amiri-700.woff2') format('woff2');
  font-weight:700; font-style:normal; font-display:swap;
}
