# BoldVoice Brand Identity

A complete profile of **BoldVoice**'s visual system — colors, typography, components, and personality.

## Quick Facts

| Field  | Value     |
|--------|-----------|
| Primary| #545975   |
| Accent | #111827   |
| Body Font | Satoshi |
| Heading Font | Satoshi |

## Color Palette

- primary: #545975
- secondary: #8891F3
- accent: #111827
- background: #13141B
- textPrimary: #13141B
- link: #111827

## Typography

- primary: Satoshi — https://fonts.google.com/specimen/Satoshi
- heading: Satoshi — https://fonts.google.com/specimen/Satoshi

## Visual Assets

- Logo: https://boldvoice.com/images/home/logo.svg
- Favicon: https://boldvoice.com/favicon.ico?favicon.0b3bf435.ico
- Social card (og:image): https://www.boldvoice.com/images/og-image.png

## UI Components

- buttonPrimary: background=#13141B, textColor=#FFFFFF, borderRadius=40px, shadow=none

## Brand Personality

Tone: modern · Energy: medium · Audience: Individuals seeking accent training

## Working with these fonts

Not found on Google Fonts? Agent Instructions that you can follow if you have permission to use the fonts:

CharacterQuilt.com suggests this flow that can help:

1. Open the company's homepage in a browser with DevTools open.
2. In the Network tab, filter by "Font" (or by extension: woff2, woff, ttf, otf).
3. Hard-reload the page and click around (pricing, blog, careers) — some weights only load on specific routes.
4. For each captured font URL: right-click → Save As to download the file locally.
5. View the page's CSS (DevTools → Sources, or curl the stylesheet URLs) and copy out the matching @font-face declarations. Rewrite each `src: url(...)` to point to your local file path.

Programmatic alternative: load the URL with Playwright or Puppeteer, listen for `response` events whose `Content-Type` starts with `font/`, and write the body to disk. The CSS extraction step is the same.

Only do this if you have permission to use the brand assets — most proprietary fonts are licensed and may not be redistributable.

## Machine-Readable Profile

```json
{
 "colorScheme": "dark",
 "fonts": [
 { 
 "family": "Satoshi",
 "role": "body"
 }
 ],
 "colors": {
 "primary": "#545975",
 "secondary": "#8891F3",
 "accent": "#111827",
 "background": "#13141B",
 "textPrimary": "#13141B",
 "link": "#111827"
 },
 "typography": {
 "fontFamilies": {
 "primary": "Satoshi",
 "heading": "Satoshi"
 },
 "fontStacks": {
 "heading": [
 "Satoshi",
 "sans-serif"
 ],
 "body": [
 "Satoshi",
 "sans-serif"
 ],
 "paragraph": [
 "Satoshi",
 "sans-serif"
 ]
 },
 "fontSizes": {
 "h1": "80px",
 "h2": "56px",
 "body": "24px"
 }
 },
 "spacing": {
 "baseUnit": 4,
 "borderRadius": "16px"
 },
 "components": {
 "buttonPrimary": {
 "background": "#13141B",
 "textColor": "#FFFFFF",
 "borderRadius": "40px",
 "borderRadiusCorners": {
 "topLeft": "40px",
 "topRight": "40px",
 "bottomRight": "40px",
 "bottomLeft": "40px"
 },
 "shadow": "none"
 }
 },
 "images": {
 "logo": "https://boldvoice.com/images/home/logo.svg",
 "favicon": "https://boldvoice.com/favicon.ico?favicon.0b3bf435.ico",
 "ogImage": "https://www.boldvoice.com/images/og-image.png",
 "logoHref": "/",
 "logoAlt": "BoldVoice"
 },
 "personality": {
 "tone": "modern",
 "energy": "medium",
 "targetAudience": "Individuals seeking accent training"
 },
 "designSystem": {
 "framework": "custom",
 "componentLibrary": ""
 },
 "confidence": {
 "buttons": 0.9,
 "colors": 0.9,
 "overall": 0.9
 }
}
```
