/* ══════════════════════════════════════════════════════════════
   Design Tokens — Typography
   Google Fonts imports + base reset
══════════════════════════════════════════════════════════════ */

/* Font imports are handled via <link> tags in HTML for performance.
   This file defines the reset and base text sizing. */

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html, body {
  width: 100%; height: 100%; overflow: hidden;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Rajdhani', sans-serif;
  user-select: none; -webkit-user-select: none;
}
