Free Alternatives to Gotham Narrow
About Gotham Narrow
- Foundry
- Hoefler&Co
- Classification
- sans-serif
- Style
- geometric
Gotham Narrow is a width variant of Hoefler&Co's Gotham that falls between the standard and condensed widths. It offers a subtler compression than Gotham Condensed while still providing improved horizontal economy.
History and Design
Gotham Narrow was designed to fill the gap between standard-width Gotham and the more aggressively compressed Gotham Condensed. The moderate narrowing preserves Gotham's readable, approachable character while gaining space efficiency — making it particularly useful for text-heavy applications where full condensation would feel too compressed.
Best Use Cases
Gotham Narrow excels in:
- Editorial design: Magazine body text, feature articles, pull quotes
- UI design: Navigation menus, data tables, dashboards
- Branding: Brand systems needing multiple widths for flexibility
- Advertising: Body copy in ads where space is valuable but readability matters
FAQ
Is Gotham Narrow free?
No, Gotham Narrow is a premium font from Hoefler&Co. The best free alternative is Montserrat at 84% similarity.
What is the difference between Gotham Narrow and Gotham Condensed?
Gotham Narrow has a gentler compression than Gotham Condensed, making it more suitable for text sizes and extended reading. Gotham Condensed is tighter and works best for headlines and display use.
Is Gotham Narrow on Google Fonts?
No, Gotham Narrow is a premium font from Hoefler&Co and is not available on Google Fonts.
The closest Google Fonts alternative is Montserrat with 84% similarity. Get it free on Google Fonts ↗
Free Alternatives (3)
Close geometric proportions with similar narrow options
Geometric narrow sans with modern personality
Performance Guide
Production performance metrics for each alternative.
How to Use Montserrat
Copy these code snippets to quickly add Montserrat to your project.
CSS code for Montserrat
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap'); HTML code for Montserrat
<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=Montserrat:wght@100..900&display=swap" rel="stylesheet"> Tailwind code for Montserrat
// tailwind.config.js
module.exports = {
theme: {
extend: {
fontFamily: {
'montserrat': ['Montserrat', 'sans-serif'],
},
},
},
}
// Usage in HTML:
// <p class="font-montserrat">Your text here</p> Next.js code for Montserrat
// Using next/font (Next.js 13+)
import { Montserrat } from 'next/font/google';
const montserrat = Montserrat({
subsets: ['latin'],
weight: ['100', '200', '300', '400', '500', '600', '700', '800', '900'],
});
export default function Component() {
return (
<p className={montserrat.className}>
Your text here
</p>
);
}
// Or using inline styles with Google Fonts link:
// <p style={{ fontFamily: "'Montserrat'" }}>Your text</p> Expo and React Native code for Montserrat
// Install: npx expo install @expo-google-fonts/montserrat expo-font
import { useFonts, Montserrat_400Regular } from '@expo-google-fonts/montserrat';
export default function App() {
const [fontsLoaded] = useFonts({
Montserrat_400Regular,
});
if (!fontsLoaded) return null;
return (
<Text style={{ fontFamily: 'Montserrat_400Regular' }}>
Your text here
</Text>
);
} Browse Alternatives by Context
Find Gotham Narrow alternatives filtered by specific use case, style, or language support.
By Use Case
By Style
By Script
Frequently Asked Questions
What is the best free alternative to Gotham Narrow?
Montserrat is the best free alternative to Gotham Narrow with a FontAlternatives similarity score of 84%. It shares similar proportions and characteristics while being available under the OFL-1.1 license for both personal and commercial use at no cost.
Is there a free version of Gotham Narrow?
There is no official free version of Gotham Narrow. However, Montserrat is available under the OFL-1.1 open-source license and achieves a FontAlternatives similarity score of 84%. It includes variable weights and supports latin, latin-extended.
What Google Font looks like Gotham Narrow?
The Google Fonts most similar to Gotham Narrow are Montserrat, Raleway, Josefin Sans. Among these alternatives, Montserrat offers the closest match with a FontAlternatives similarity score of 84% and includes variable weights for flexible typography options.
Can I use Montserrat commercially?
Yes, Montserrat can be used commercially. It is licensed under OFL-1.1, which allows free use in websites, applications, print materials, and commercial projects without purchasing a license or paying royalties.
Is Montserrat similar enough to Gotham Narrow?
Montserrat achieves a FontAlternatives similarity score of 84% compared to Gotham Narrow. While not identical, it offers comparable letterforms, proportions, and visual style. Most designers find it works excellently as a substitute in web and print projects.
What are the main differences between Gotham Narrow and its free alternatives?
Free alternatives to Gotham Narrow may differ in subtle details like letter spacing, curve refinements, and available weights. Premium fonts typically include more OpenType features, extended language support, and optimized screen rendering. However, for most projects, these differences are negligible.
Where can I download free alternatives to Gotham Narrow?
Download Montserrat directly from Google Fonts. Click the "Get Font" button on any alternative listed above to visit the official download page. Google Fonts also provides convenient embed codes for seamless web integration.