Jost

Jost font preview
Replaces: Futura (90%) | OFL-1.1 | Updated: Jan 2026

About Jost

Classification
sans-serif
Weights
Variable (100-900)
Features
Variable, Italics
SIL Open Font License 1.1
Free to use, modify, and distribute. Can be used commercially without attribution.
Get Jost Free ↗

Jost is an original geometric sans-serif typeface designed by Owen Earl, inspired by the 1920s German typographic tradition. Named after Heinrich Jost, a German typeface designer, it captures the essence of geometric sans-serif fonts like Futura while offering modern refinements and open-source availability.

History and Design

Owen Earl designed Jost as a tribute to the geometric sans-serif genre that emerged from the Bauhaus movement. While drawing clear inspiration from Paul Renner's Futura, Jost incorporates contemporary adjustments that improve its performance in digital environments. The typeface maintains the characteristic circular forms and even stroke widths that define geometric sans-serifs.

Why Jost is Popular

Jost stands out as the most faithful free alternative to Futura available. Its geometric precision and elegant proportions make it suitable for the same sophisticated applications where Futura excels. The inclusion of a variable font version and comprehensive character set addresses modern design requirements while honoring its historical influences.

Technical Features

  • Variable font: Full weight range from Thin (100) to Black (900)
  • True italics: Carefully designed oblique variants for all weights
  • Cyrillic support: Extended character set for international projects
  • OpenType features: Stylistic alternates, tabular figures, and contextual forms
  • Historical alternates: Optional letterforms that echo original geometric designs

Best Use Cases

Jost excels in:

  • Fashion and luxury branding: Elegant geometric aesthetic
  • Display typography: Strong visual presence at large sizes
  • Editorial design: Sophisticated headlines and pull quotes
  • Art and culture projects: Connection to modernist design heritage

Usage Tips

For display use, lighter weights (100-300) create elegant, refined headlines. Medium weights (400-500) work well for subheadings and navigation. For body text at smaller sizes, increase tracking slightly to improve readability. Pair Jost with humanist serifs like Libre Baskerville for classic contrast, or with other geometric fonts for a cohesive modernist look.

Alternative For (1)

Jost is a free alternative to the following premium fonts:

#1 Futura 90%
[URW Type Foundry] · sans-serif

Closest free alternative with authentic geometric proportions

View all alternatives →

How to Use Jost

Copy these code snippets to quickly add Jost to your project.

CSS Import

@import url('https://fonts.googleapis.com/css2?family=Jost:wght@100..900&display=swap');

HTML Link Tags

<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Jost:wght@100..900&display=swap" rel="stylesheet">

Tailwind CSS

// tailwind.config.js
module.exports = {
  theme: {
    extend: {
      fontFamily: {
        'jost': ['Jost', 'sans-serif'],
      },
    },
  },
}

// Usage in HTML:
// <p class="font-jost">Your text here</p>

React / Next.js

// Using next/font (Next.js 13+)
import { Jost } from 'next/font/google';

const jost = Jost({
  subsets: ['latin'],
  weight: ['100', '200', '300', '400', '500', '600', '700', '800', '900'],
});

export default function Component() {
  return (
    <p className={jost.className}>
      Your text here
    </p>
  );
}

// Or using inline styles with Google Fonts link:
// <p style={{ fontFamily: "'Jost'" }}>Your text</p>