// Tokens.jsx — mirrors colors_and_type.css for runtime JSX use
const T = {
  ink: '#0A1628', charcoal: '#1C1C1E', graphite: '#2A2E35',
  slate: '#6B7280', mute: '#A1A6AE', rule: '#D9D5CC',
  paperDim: '#ECE8DF', paper: '#F5F3EE', white: '#FFFFFF',
  gold: '#C9A14A', goldDeep: '#A78236', goldLight: '#E4C77A',
  border_d: '#1F2937',
};
const F = {
  wordmark: "'Archivo', system-ui, sans-serif",
  display:  "'Space Grotesk', system-ui, sans-serif",
  body:     "'Inter Tight', system-ui, sans-serif",
  mono:     "'JetBrains Mono', ui-monospace, monospace",
};
// Booking URL — every "Book a call / Book a free financial review" CTA across
// the site routes here (Microsoft Bookings, hosted under gilbertsonbookkeeping.com).
const BOOKINGS_URL = 'https://outlook.office.com/book/G2AdvisoryGroup@gilbertsonbookkeeping.com/';
const openBookings = () => window.open(BOOKINGS_URL, '_blank', 'noopener,noreferrer');

window.T = T; window.F = F;
window.BOOKINGS_URL = BOOKINGS_URL;
window.openBookings = openBookings;
