INSPECTED ON SEPTEMBER 20, 2026

What font does Stripe use?

Stripe’s site is one of the most imitated in tech, and much of its calm, precise feel comes from a single typeface used lightly: big headlines at weight 300 rather than bold.

Short answer: Stripe’s website uses Söhne, a typeface by Klim Type Foundry, for all of its text. It appears in the CSS as sohne-var, a variable font served from Stripe’s own CDN.

FONTS ON STRIPE.COMShare of visible text · 1440px wide viewport

Söhne

Self-hosted100%
CSS name
sohne-var
Weights
300, 400
Sizes
56px · 48px · 32px · 26px · 22px · 18px · 16px
Served from
b.stripecdn.com

Sizes, weights and spacing by role

These are computed values from the live page, which is what the Font Inspector panel shows when you click each element.

RoleFontSizeWeightLine heightLetter spacing
HeadlineSöhne56px3001.03-0.025em
SubheadingSöhne48px3001.03-0.02em
Body textSöhne22px3001.1-0.01em
NavigationSöhne14px4001normal
Measured at a 1440px wide window on September 20, 2026. Responsive sites use other sizes on smaller screens.

The main font stack in the CSS:

font-family: sohne-var, "SF Pro Display", sans-serif;
  • Headlines are set in weight 300, light, with tight line height and negative letter spacing. The size carries the emphasis.
  • The CSS turns on the OpenType feature ss01, one of Söhne’s stylistic sets, across the site.
  • The page also loads Source Code Pro, an open source monospaced font, for code samples.
  • The family name in the CSS is an internal alias. The font file name, Sohne, gives the real typeface away.

Check any site yourself in one click.

Sites change their type without notice. Font Inspector shows the rendered font, size, weight and spacing of any text on stripe.com or anywhere else, and lists every font on the page. Free, no account.

Add to Chrome

About the fonts, and whether you can use them

Söhne

Söhne is a grotesque sans serif designed by Kris Sowersby and published by Klim Type Foundry in 2019. It draws on Akzidenz-Grotesk and the look of mid-century transit signage.

Can you use it? Söhne is a commercial typeface. You need a web license from Klim Type Foundry to use it. Inter and Hanken Grotesk are free and sit in the same neutral, modern territory.

Free alternatives to Söhne

Finding a font does not license it. More in how to get a font you found, legally.

Get a similar look with a free font

This starter uses Inter, which is open source, with the sizes and spacing measured above. It is an approximation, not a copy of Stripe’s brand typeface.

/* Approximates the Stripe look with a free font */
body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}
h1 {
  font-size: 3.5rem; /* 56px */
  font-weight: 300;
  line-height: 1.03;
  letter-spacing: -0.025em;
}
p {
  font-size: 1.375rem; /* 22px */
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
Try the pairing in the font pairing playground, or build the rest of the scale with the type scale calculator.

How we checked

We opened stripe.com in Chrome on September 20, 2026 and read the computed styles of its visible text: the declared font stack, the font actually rendered, and how much of the page’s text each family sets. That is the same data the Font Inspector extension shows under Fonts on this page. We re-check these pages periodically, and the date above shows the last inspection.

Stripe and its typefaces are trademarks of their respective owners. Font Inspector is not affiliated with Stripe.

Questions & answers

What font does Stripe use on its website?+

Stripe’s website uses Söhne, a typeface by Klim Type Foundry, for all of its text. It appears in the CSS as sohne-var, a variable font served from Stripe’s own CDN.

Can I use the Stripe font?+

Söhne is a commercial typeface. You need a web license from Klim Type Foundry to use it. Inter and Hanken Grotesk are free and sit in the same neutral, modern territory.

What is a free font similar to Söhne?+

Inter and Hanken Grotesk are free on Google Fonts and give a similar feel. No free font is an exact match, so compare it with your own text first.

How can I check what font Stripe uses myself?+

Open stripe.com, then click any text with the Font Inspector extension, or right-click, choose Inspect and look at Rendered Fonts in the Computed tab. Sites change their typography, so checking the live page is the only way to be sure.