/* Handy Eldiven — Type tokens
   No brand font files were supplied with this project. Nearest Google Fonts
   matches have been substituted — flagged in readme.md — swap in the real
   brand fonts here the moment they're available. */
/* Fontlar canlıda dış bağımlılık olmasın diye self-host edildi:
   @font-face tanımları /assets/css/fonts.css (layout'ta bu dosyadan önce yüklenir). */

:root {
  --font-display: 'Manrope', 'Segoe UI', sans-serif;
  --font-body: 'Public Sans', 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;

  /* Scale — B2B/catalog site, generous for readability of technical copy */
  --text-display-xl: 700 56px/1.05 var(--font-display);
  --text-display-lg: 700 40px/1.1 var(--font-display);
  --text-display-md: 700 30px/1.2 var(--font-display);
  --text-display-sm: 600 22px/1.3 var(--font-display);

  --text-body-lg: 400 19px/1.6 var(--font-body);
  --text-body-md: 400 16px/1.6 var(--font-body);
  --text-body-sm: 400 14px/1.5 var(--font-body);

  --text-label: 600 13px/1.3 var(--font-body);
  --text-eyebrow: 700 12px/1.2 var(--font-body);
  --text-mono-sm: 500 13px/1.4 var(--font-mono);

  --tracking-eyebrow: 0.08em;
  --tracking-tight: -0.01em;
}
