What font does Wise use?
Wise introduced Wise Sans with its 2023 rebrand. It is a loud, heavy display face, used for a few words at a time, while Inter handles everything that needs to be read.
Short answer: Wise uses Inter for nearly all text and its own display typeface, Wise Sans, for its huge headlines. Both are self-hosted on wise.com.
Inter
Self-hosted96.6%- CSS name
Inter- Weights
- 400, 600
- Sizes
- 60.9px · 45.5px · 20px · 18px · 16px · 14px
- Served from
- wise.com
Wise Sans
Self-hosted3.4%- CSS name
Wise Sans- Weights
- 400, 900
- Sizes
- 105.4px · 89.1px · 40px
- Served from
- wise.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.
| Role | Font | Size | Weight | Line height | Letter spacing |
|---|---|---|---|---|---|
| Headline | Wise Sans | 105.4px | 900 | 0.85 | normal |
| Subheading | Wise Sans | 40px | 400 | 0.85 | normal |
| Body text | Inter | 16px | 400 | 1.5 | 0.005em |
| Navigation | Inter | 14px | 600 | 1.55 | -0.006em |
The main font stack in the CSS:
font-family: Inter, Helvetica, Arial, sans-serif;- Headline lines are set at a line height of 0.85, so they overlap the space of the line above. It works because the headline is short and heavy.
- The Inter file name shows careful optimization: a variable font limited to the weight axis and Latin characters.
- The page still loads files for Averta, the typeface Wise used before its rebrand.
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 wise.com or anywhere else, and lists every font on the page. Free, no account.
About the fonts, and whether you can use them
Inter
The open source interface typeface by Rasmus Andersson, loaded as a variable font with only the weight axis and the Latin subset.
Can you use it? Yes. Inter is free under the SIL Open Font License.
On Google Fonts: Inter.
Wise Sans
Wise’s custom display typeface, used in its heaviest weight for headlines of around 100px.
Can you use it? Wise Sans is proprietary. Anton and Unbounded are free display fonts that give headlines a similar weight and presence.
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 Wise’s brand typeface.
/* Approximates the Wise look with a free font */
body {
font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}
h1 {
font-size: 6.5875rem; /* 105.4px */
font-weight: 900;
line-height: 0.85;
}
p {
font-size: 1rem; /* 16px */
font-weight: 400;
line-height: 1.5;
letter-spacing: 0.005em;
}How we checked
We opened wise.com in Chrome on September 21, 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.
Wise and its typefaces are trademarks of their respective owners. Font Inspector is not affiliated with Wise.
Questions & answers
What font does Wise use on its website?
Wise uses Inter for nearly all text and its own display typeface, Wise Sans, for its huge headlines. Both are self-hosted on wise.com.
Can I use the Wise font?
Yes. Inter is free under the SIL Open Font License.
How can I check what font Wise uses myself?
Open wise.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.