/* Base Theme - Font and Layout Custom Properties */
/* Colors are handled by DaisyUI themes in tailwind.config.js */
/* Site-specific themes load fonts and can add custom styling */

:root {
  /* Fonts - overridden by site-specific themes */
  --theme-font-heading: 'Inter', system-ui, sans-serif;
  --theme-font-body: 'Inter', system-ui, sans-serif;

  /* Border radius */
  --theme-radius: 0.5rem;
  --theme-radius-lg: 0.75rem;
  --theme-radius-full: 9999px;
}

/* Apply font variables */
body {
  font-family: var(--theme-font-body);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--theme-font-heading);
}
