Introduction

Most “off-brand” outputs aren’t model problems—they’re control problems. If the structure is fixed (Part 1) and decoding is disciplined (Part 2), the remaining variation lives in voice: tone, rhythm, persona, and word choice. You don’t need a new model or a week of fine-tuning to fix this. You need a small set of style artifacts—style frames, persona goals, and lexicon policies—plus validators that make them stick. This article shows how to encode brand voice as data, apply it at inference, and measure adherence in production.


The Control Surfaces

Style frame (how it should sound). A compact block defining voice (“plain, confident, concrete”), rhythm (avg sentence length), and channel rules (emoji, headline caps).
Persona card (who is speaking to whom). Role, goals, and constraints bound to the audience (“CFO; clarify cost and risk in <60s; avoid jargon”).
Lexicon policy (what words to use/avoid). Prefer/ban lists, mandatory casing, and phrase substitutions.
Format contract (what the output looks like). Sections and counts from Parts 1–2, because structure is the strongest lever over style.

Treat each as a versioned artifact. Prompts reference them; validators enforce them; traces record the versions used.


Designing a Style Frame (minimal, effective)

Keep it under ~120 tokens. Prioritize constraints that are measurable.

Example (LinkedIn, “Trusted Advisor”)

Voice: plain, confident, concrete; no hype words.
Rhythm: ≤ 18 words/sentence; 3 short paragraphs; active voice.
Audience: time-pressed execs; assume domain basics; no definitions.
Evidence: 1 concrete example; avoid unverifiable numbers.
Channel: no hashtags in body; 1 question at the end, optional.

Why this works: every line is testable (sentence length, hype ban list, paragraph count, hashtag rule).


Persona That Actually Sticks

Persona drifts when it’s adjectival (“be authoritative”). Bind it to goals and constraints.

Persona (CFO)

Goal: make cost & compliance clear in <60s.
Constraints: avoid vendor jargon; quantify when possible; mark uncertainty.
Reader assumption: understands unit economics; new to our product.

Feed the persona before the content ask and after the format. Keep it ≤100 tokens.


Lexicon Policy (the strongest practical lever)

Lexicon is cheap, portable, and enforceable.

Policy (excerpt)

{
  "prefer": ["evidence","control","unit economics","reduce","accelerate","validate"],
  "ban": ["revolutionary","game-changer","only solution","guarantee"],
  "substitute": [["cutting-edge","advanced"],["leverage","use"]],
  "brand_casing": [["Product X","Product X"]]
}

Pair with a validator that checks presence/absence and performs deterministic substitutions in a repair step.


Prompt Scaffold (composition order matters)

  1. FORMAT (sections, lengths, bullet counts)

  2. PERSONA (goals, constraints, reader assumptions)

  3. STYLE (voice, rhythm, channel rules)

  4. LEXICON (prefer/ban, casing)

  5. TASK (the ask, minimal)

This order produces stronger adherence than burying rules at the end of a narrative prompt.


Validators That Make Style Real

Add light, deterministic checks:

On failure, repair the section: trim sentences, replace banned phrases, fix casing; only resample if repairs can’t satisfy constraints.


Implementation Recipe (step-by-step)

  1. Author artifacts: style_frame.json, persona.json, lexicon.json per channel/persona.

  2. Reference in the contract: add fields pointing to style/persona/lexicon IDs.

  3. Render outline: as in Part 2, then generate each section with the artifacts in-context.

  4. Validate: run style checks (sentence caps, lexicon, channel rules).

  5. Repair: deterministic substitutions, trims, casing fixes; revalidate.

  6. Log: versions of style/persona/lexicon used; adherence scores (see Metrics).

  7. Tune: if outputs feel stiff and CPR is high, loosen temperature/top-p slightly for narrative sections only.


Worked Examples

A. Product Launch (web post)

B. Renewal Email (CFO audience)


Measuring “On-Brand” Without Labels


Performance Considerations


Common Pitfalls—and Fixes


Conclusion

You don’t need fine-tuning to sound like your brand. You need compact artifacts that define voice (style frame), intent (persona), and word choice (lexicon)—applied in the right order, enforced by validators, and corrected with cheap repairs. When you log adherence and tie it to outcomes, voice becomes a controllable system property, not a hope.