@font-face {
  font-family: 'Castellar';
  src: url('/assets/fonts/Castellar.woff2') format('woff2'),
       url('/assets/fonts/Castellar.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Tw Cen MT';
  src: url('/assets/fonts/TwCenMT.woff2') format('woff2'),
       url('/assets/fonts/TwCenMT.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Agency FB';
  src: url('/assets/fonts/AgencyFB.woff2') format('woff2'),
       url('/assets/fonts/AgencyFB.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Fonts */
  --font-heading: 'Castellar', serif;
  --font-body: 'Tw Cen MT', sans-serif;
  --font-nav: 'Agency FB', sans-serif;
  
  /* Colors */
  --primary: #2c3087;
  --primary-dark: #1f2260;
  --primary-light: #e6e7f5;
  
  --secondary: #DE751C;
  --secondary-dark: #b85c15;
  --secondary-light: #f8e6d4;
  
  --success: #10b981;
  --error: #ef4444;
  --warning: #f59e0b;
  --info: #3b82f6;
  
  --text-primary: #000000;
  --text-secondary: #4b5563;
  --text-tertiary: #6b7280;
  
  --background-primary: #ffffff;
  --background-secondary: #f9fafb;
  
  --border-color: #e5e7eb;
  
  /* Typography */
  --font-sans: var(--font-body);
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
  
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  
  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 200ms ease;
  --transition-slow: 300ms ease;
} 