Google Fonts added hundreds of typefaces in 2025, but the overwhelming majority are either narrow-script additions or incremental updates to existing families. The list of genuinely useful new sans-serifs for Latin-script web design is shorter — and more interesting — than it first appears. Several of the best entries came from large brand commissions that went open-source: a retailer, a developer platform, and even Google itself. These fonts arrive with the kind of spacing and testing budget that purely open-source projects rarely get.
What follows is a straightforward rundown of the seven strongest sans-serif additions, what makes each one distinct, where it works well, and how to load it. Fonts are ordered roughly by release date through 2025.
1. Parkinsans
Technically developed in 2024 but added to Google Fonts in early 2025, Parkinsans was commissioned by Parkinson's UK and designed by London agency Red Stone. It forks Indian Type Foundry's Poppins as its geometric starting point, then pushes the character forms further — the K, the lowercase a and e, the circular O all carry deliberate quirks that give it energy at display sizes without becoming illegible at text sizes.
It ships in six weights (300–800) and is explicitly a headline typeface. Body text at 16px is fine, but the charm lives at 36px and above. If you need something friendlier than Inter but less whimsical than a display novelty, Parkinsans fills a real gap for nonprofit, healthcare, and community-facing projects.
/* Google Fonts import */
@import url('https://fonts.googleapis.com/css2?family=Parkinsans:[email protected]&display=swap');
/* Usage */
h1, h2 {
font-family: 'Parkinsans', sans-serif;
font-weight: 700;
}
2. Momo Trust Sans
Momo Trust Sans (April 2025) was designed by Type Associates for MoMo, a Vietnamese mobile payments platform. The brief — a typeface that reads as both approachable and trustworthy — pushed the designers toward a design that sits between humanist and geometric: rounded terminals, high x-height, and ink-trap-style details at the joints that keep it crisp at small sizes on screen.
It covers nine weights from Thin to Black with matching italics, making it one of the most complete families in this list. The "trust" framing is not marketing copy — the letter spacing and apertures genuinely do read as stable at small sizes. It is a good candidate for fintech interfaces, e-commerce product pages, and anywhere that readable body copy at 14–16px matters alongside strong brand headings.
3. Elms Sans
Elms Sans (May 2025) was designed by Amarachi Nwauwa under her Gida Type Studio, an independent African type foundry based in Abuja. The name is a dedication to three mentors — Elijah Affi, Makua Afiomah, and Solomon Dawudu — whose initials form the word.
Technically it is a utilitarian geometric sans, drawing from the early-twentieth-century geometric tradition while introducing subtle warmth in its proportions. It ships as a variable font with wght and ital axes across nine weight steps. The variable setup means a single file handles the full range:
/* Variable font load */
@import url('https://fonts.googleapis.com/css2?family=Elms+Sans:ital,wght@0,100..900;1,100..900&display=swap');
/* Tailwind CSS v4 theme registration */
@theme {
--font-sans: 'Elms Sans', sans-serif;
}
One honest note from early reviews: at very small body text sizes it can read a touch tight. Use it from 15px upward and let it breathe with a comfortable line height. At display sizes it is clean and confident — comparable in character to Gotham, minus the licensing fee.
4. Zalando Sans
Zalando Sans (August 2025) is the standout brand-to-open-source release of the year. Jakob Ekelund of KH Type designed it for Zalando, the European fashion retailer, and it arrived on Google Fonts with eight weights and matching italics — plus separate Expanded and SemiExpanded variants.
The design sits in grotesque territory: it has Inter's neutrality and practicality but adds enough personality that it does not disappear into the background. The descenders are slightly shorter than average, which improves compactness in tight UI layouts. If Inter feels anonymous and DM Sans feels informal, Zalando Sans occupies a productive middle position.
@import url('https://fonts.googleapis.com/css2?family=Zalando+Sans:ital,wght@0,100..900;1,100..900&display=swap');
Because this is a retail brand font, it carries an inherent e-commerce credibility. It works for product-focused small business sites — retail, services, anything where the brand needs substance without pretension.
5. Stack Sans Text
Stack Sans Text (October 2025) was designed by Koto for Stack Overflow. The "Text" in the name is not casual — it signals that this family was optimized specifically for reading at smaller sizes, not headline performance. The characters are slightly wider than a neutral grotesque, with generous ink traps and open counters.
It ships in six weights (ExtraLight through Bold). Some of the character forms are intentionally unconventional — the single-storey lowercase a at certain weights, the terminal angles — which keeps it from reading as generic. The developer context of its origin gives it credibility for documentation sites, technical landing pages, and SaaS products.
If you have been using Source Sans 3 as your default text face for technical content, Stack Sans Text is the cleaner 2025 replacement to evaluate.
6. Vend Sans
Vend Sans (September 2025) was designed by Baptiste Guesnon of Bloom Type Foundry for Lightspeed's Vend brand. It is a modern grotesque that consciously balances geometric structure with humanist warmth — the apertures are more open than a strict geometric, and the italic is drawn (not slanted), which matters at text sizes.
It ships in five weights with matching italics and includes OpenType stylistic alternates that allow some brand customization. That last point is unusual for a Google Fonts entry and worth knowing about if you are building a site where OpenType features are accessible via CSS:
/* Enable stylistic alternates */
.brand-heading {
font-family: 'Vend Sans', sans-serif;
font-variant-alternates: stylistic(1);
/* or the low-level form: */
font-feature-settings: 'salt' 1;
}
Vend Sans is a strong option for commerce and services sites that want something fresher than Inter but do not want the flamboyance of a display typeface.
7. Google Sans Flex
Google Sans Flex (November 2025) is Google's own brand typeface, made open-source under the Open Font License. It is the most technically ambitious entry in this list: a variable font with six axes — weight (wght), width (wdth), optical size (opsz), slant (slnt), grade (GRAD), and roundness (ROND).
The ROND axis is the most distinctive. It shifts letterforms from crisp geometric to softly rounded without touching weight or width, which lets a single typeface serve a wide tonal range. Google designed it to adapt across screen sizes — optical size adjustments ensure the letter shapes stay proportionally readable whether they appear at 12px on a watch screen or 120px on a billboard.
@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Flex:opsz,[email protected],100..900&display=swap');
/* Optical sizing on by default — the browser picks the right opsz value */
h1 {
font-family: 'Google Sans Flex', sans-serif;
font-optical-sizing: auto;
font-weight: 600;
}
/* Manually dial in the roundness axis for a softer brand feel */
.soft-heading {
font-family: 'Google Sans Flex', sans-serif;
font-variation-settings: 'ROND' 80, 'wght' 500;
}
The practical limitation is recognition: Google Sans has a strong association with Google's own products. For sites where that association is neutral or positive (tech, productivity, developer tools), it is an excellent choice. For brands that want distinctly their own identity, the resemblance to Material design may work against it.
A note on variable font loading
Most of these fonts support variable axes, which means a single file replaces a collection of static weight files. The CSS font-display: swap and the display=swap URL parameter are still worth including for perceived performance — Google Fonts serves the variable file when the axis range is specified with the @ syntax shown in the examples above.
For Tailwind CSS v4 projects, registering the font in the CSS-first theme block is the correct approach:
/* In your main CSS file */
@import url('https://fonts.googleapis.com/css2?family=Zalando+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@theme {
--font-sans: 'Zalando Sans', ui-sans-serif, system-ui, sans-serif;
}
/* Then use Tailwind's font-sans utility as normal */
Which one to reach for
The short version: Zalando Sans is the default recommendation for service and commerce sites that want something more considered than Inter. Stack Sans Text is the best pick for documentation and technical content. Google Sans Flex is worth the experiment if you need a serious variable font with optical sizing for a responsive design system. Elms Sans and Momo Trust Sans deserve wider use — both are more complete families than their relative obscurity suggests.
All seven are free, OFL-licensed, and usable in commercial projects without attribution requirements. That is the starting point. The finishing point is loading one into a real design, at the size you actually intend to use it, and seeing whether it does the job — which no roundup can decide for you.