/* ============================================================
   Cyberfy — Webfonts
   ------------------------------------------------------------
   SUBSTITUTION NOTE: Cyberfy's brand specifies a proprietary
   variable sans ("Cyberfy Sans") and a proprietary mono
   ("Cyberfy Mono"). Those binaries are not bundled here, so we
   load the closest open-source matches from Google Fonts:
     - Inter (variable)        -> Cyberfy Sans
     - JetBrains Mono          -> Cyberfy Mono
   Inter's fine-grained variable weight axis closely matches the
   intended 320/330/340/450/480/540/700 increments. If you have
   the real font files, drop them in assets/fonts/ and replace
   the @import below with local @font-face rules.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,300..700&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  --font-sans: "Inter", "SF Pro Display", system-ui, -apple-system, helvetica, sans-serif;
  --font-mono: "JetBrains Mono", "SF Mono", ui-monospace, menlo, monospace;
  font-feature-settings: "kern" 1;
}
