/* ============================================
   CFTC Crusher - Font System (Apple-inspired)
   Primary: System UI fonts (SF Pro on Apple devices)
   Fallback: Inter (web font for Windows/Linux)
   ============================================ */

/* Poppins - primary UI font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* Inter - Web Fallback (for non-Apple devices) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* System font stack definitions (used in custom.css) */
:root {
  --font-body: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', 'Segoe UI', Inter, sans-serif;
  --font-heading: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', 'Segoe UI', Inter, sans-serif;
  --font-mono: ui-monospace, 'SF Mono', 'JetBrains Mono', Menlo, Monaco, Consolas, monospace;
}
