URW Gothic
About URW Gothic
- Source
- GitHub ↗
- Classification
- sans-serif
- Weights
- 400, 500, 600, 700
- Features
- Italics
Strong-copyleft license used for the URW++ base-35 fonts (the free ITC Avant Garde clone). Free to use and embed, but redistributing or modifying the font files carries copyleft obligations — check the terms for your use case.
What's allowed?
- ✓ Client work
- ✓ SaaS / Web apps
- ✓ YouTube / Video
- ✓ Sell products
- ✓ Print materials
Note: Derivative fonts must use the same license.
Full license guide →URW Gothic is a humanist sans-serif typeface based on ITC Avant Garde Gothic, featuring distinctive stroke modulation that sets it apart from typical sans-serifs. Its elegant letterforms with subtle thick-thin contrast make it an excellent alternative for designs requiring refined sophistication.
History and Design
URW++ released URW Gothic as part of their extensive library of classic typeface revivals and interpretations. The design captures the elegant, calligraphic quality of typefaces like Optima—sans-serifs that feature subtle stroke variation reminiscent of pen-drawn letters. This gives URW Gothic a warmth and sophistication that purely geometric or grotesque sans-serifs cannot achieve.
The letterforms show careful attention to proportions and rhythm, with the stroke modulation adding visual interest without compromising legibility. The result is a typeface that feels both contemporary and timeless.
Why URW Gothic Stands Out
Unlike most sans-serifs that maintain uniform stroke widths, URW Gothic's subtle variation creates a more organic, humanist feel. This makes it particularly suitable for fashion, luxury, and editorial contexts where pure geometric or grotesque sans-serifs might feel too cold or mechanical.
The typeface bridges the gap between sans and serif aesthetics, offering the clarity of a sans-serif with hints of classical elegance typically associated with Roman letterforms.
Technical Features
- 4 weights: Regular through Bold for flexible hierarchy
- True italics: Elegant italic designs with cursive influences
- Extended Latin: Coverage for Western European languages
- Stroke modulation: Distinctive thick-thin contrast
Best Use Cases
URW Gothic excels in:
- Fashion and luxury: Refined elegance without ostentation
- Editorial design: Sophisticated headlines and pull quotes
- High-end branding: Understated luxury for premium brands
- Invitations and stationery: Elegant typographic presence
Usage Tips
URW Gothic performs best at display sizes where its subtle stroke modulation can be appreciated. For body text, consider sizes of 14px or larger to preserve the elegant details. Pair with complementary serifs like Playfair Display for dramatic contrast, or use alone for minimalist sophistication.
Is URW Gothic on Google Fonts?
No, URW Gothic is not on Google Fonts. It is available from GitHub ↗
Alternative For (1)
URW Gothic is a free alternative to the following premium fonts:
Clean, elegant geometric sans with refined, spacious proportions
Compare URW Gothic
See how URW Gothic compares to other fonts side by side.
Font Pairings
Fonts that pair well with URW Gothic based on contrast and complementary design characteristics.
Performance
Key metrics for evaluating URW Gothic in production.
- Score
- 38 /100 Below Average
- File Size
- N/A
- Weights
- 4 static + Italics
- Languages
- 2 groups CDN delivery
How to Use URW Gothic
Copy these code snippets to quickly add URW Gothic to your project.
CSS code for URW Gothic
/* Download from: https://github.com/ArtifexSoftware/urw-base35-fonts */
@font-face {
font-family: "URW Gothic";
src: url('/fonts/urw-gothic.woff2') format('woff2');
font-display: swap;
} HTML code for URW Gothic
<!-- Download from: https://github.com/ArtifexSoftware/urw-base35-fonts -->
<link href="/fonts/urw-gothic.css" rel="stylesheet"> Tailwind code for URW Gothic
// tailwind.config.js
module.exports = {
theme: {
extend: {
fontFamily: {
'urw-gothic': ['"URW Gothic"', 'sans-serif'],
},
},
},
}
// Usage in HTML:
// <p class="font-urw-gothic">Your text here</p> Next.js code for URW Gothic
// Import the font CSS in your _app.js or layout
import '/fonts/urw-gothic.css';
export default function Component() {
return (
<p style={{ fontFamily: '"URW Gothic"' }}>
Your text here
</p>
);
} Expo and React Native code for URW Gothic
// Install: npx expo install expo-font
import { useFonts } from 'expo-font';
export default function App() {
const [fontsLoaded] = useFonts({
'URW Gothic': require('./assets/fonts/urw-gothic.ttf'),
});
if (!fontsLoaded) return null;
return (
<Text style={{ fontFamily: 'URW Gothic' }}>
Your text here
</Text>
);
}
// Download font from: https://github.com/ArtifexSoftware/urw-base35-fonts