/**
 * Run Free - Font Variables
 * Dynamic font system for customizable storefront typography
 * 
 * This file defines CSS custom properties that can be overridden
 * by the site's selected Google Font choice.
 */

:root {
  /* Primary font family - can be customized per site */
  --font-primary: "Nunito", "Open Sans", "Helvetica Neue", sans-serif;
  
  /* Font weights matching our standard set */
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
}

/* 
 * Site-specific font override
 * This variable is injected dynamically based on the site's font selection
 * Format: --font-primary: "FontFamily", fallback;
 */
