/*
 * SEACON Coop theme — derived from DESIGN-apple.com.md
 *
 * Colors: Apple blue (#0071E3) palette injected via UNFOLD.COLORS in settings.py
 * Typography: SF Pro Display (heading) + system stack (body) with Thai fallback
 *
 * SF Pro Display is Apple's system font — use the system font stack so Apple devices
 * pick it up natively, and other OSes fall back to their best alternative.
 */

:root {
  --font-sans:
    -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', Roboto,
    'Helvetica Neue', Arial, 'Noto Sans Thai', 'Sarabun', sans-serif;
  --font-display:
    'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    'Helvetica Neue', Arial, 'Noto Sans Thai', 'Sarabun', sans-serif;
}

body,
.text-font-sans,
[class*="font-medium"],
[class*="font-normal"] {
  font-family: var(--font-sans) !important;
}

h1, h2, h3, h4, h5, h6,
.text-font-display,
[class*="font-semibold"],
[class*="font-bold"] {
  font-family: var(--font-display) !important;
  letter-spacing: -0.01em;
}
