Your Digital-AI Solution Partner
Maintain clear space equal to the full height of the logo mark on all four sides. No text, graphic elements, or other logos may appear within this zone.
| Style | Sample | Font | Size | Weight | Usage | Specs |
|---|---|---|---|---|---|---|
| Display | Hero | Montserrat | 48–72px | Black 900 | Hero headlines, cover | tracking: -1px |
| Heading 1 | Page Title | Montserrat | 32–42px | Bold 700 | Page titles | tracking: 0 |
| Heading 2 | Section Head | Montserrat | 22–28px | SemiBold 600 | Section headings | color: Sage |
| Heading 3 | Sub-section | Montserrat | 16–20px | SemiBold 600 | Sub-sections, cards | tracking: 0 |
| Body | Paragraph text for all body copy and descriptions. | Lato | 15–17px | Regular 400 | All body copy | line-height: 1.7 |
| Caption | Helper text, labels, footnotes | Lato | 12–13px | Regular 400 | Captions, meta | color: muted |
| Label | SECTION LABEL | Montserrat | 9–11px | Bold 700 | Section tags, UI labels | ALL CAPS • 3px |
Copy the following directly into your stylesheet. These are the single source of truth for all brand colors, fonts, and spacing across the website.
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;900&family=Lato:ital,wght@0,300;0,400;0,700;1,400&display=swap');
:root {
/* Brand Colors — sampled directly from official logo */
--color-primary: #1A2A1D; /* Deep Forest — logo background */
--color-copper: #D1A07D; /* Rose Copper — logo ring */
--color-mint: #98B29E; /* Sage Mint — logo accent bars */
--color-white: #FFFFFF; /* White */
/* UI Surface Colors */
--color-surface: #F5F2EE; /* Warm off-white page background */
--color-surface-2: #EAE4DC; /* Deeper surface / hover states */
--color-border: #d4cfc7; /* Default border color */
/* Text Colors */
--color-text: #1e2920; /* Near-black body text */
--color-muted: #5a6b5e; /* Secondary / muted text */
/* Typography */
--font-heading: 'Montserrat', sans-serif;
--font-body: 'Lato', sans-serif;
/* Border Radius */
--radius-sm: 4px;
--radius-md: 8px;
--radius-lg: 12px;
/* Spacing Scale */
--space-xs: 4px;
--space-sm: 8px;
--space-md: 16px;
--space-lg: 24px;
--space-xl: 40px;
--space-2xl: 64px;
--space-3xl: 96px;
}