/*
 * Flow - Global Tenant Fonts & Brand Styles
 *
 * This file is loaded globally by the TenantFonts component
 * to ensure custom fonts and brand styles persist across all
 * tenant pages (landing, booking, auth, etc.)
 *
 * NOTE: Do NOT add page-specific styles here.
 * Use the landing page's styles.css for that.
 */

/* Flow Landing Page - Uses system fonts */

/* Brand Colors */
:root {
  --flow-dark: #202020;
  --flow-light: #ededdd;
  --flow-white: #ffffff;
  --flow-gray: #f5f5f5;
}

/* Override default font for all tenant pages */
body {
  font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

/* Font utilities for Roboto family (via Google Fonts or system) */
.font-roboto {
  font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

.font-roboto-mono {
  font-family: 'Roboto Mono', 'SF Mono', 'Menlo', monospace;
}
