sgtype.com
Open in
urlscan Pro
23.227.38.72
Public Scan
URL:
https://sgtype.com/products/classic-font-bundle?pp=0
Submission: On August 29 via api from US — Scanned from CA
Submission: On August 29 via api from US — Scanned from CA
Form analysis
5 forms found in the DOMGET /search
<form class="my-6 section-x-padding" action="/search" method="get" role="search">
<div class="flex w-full max-w-xs items-end">
<label for="sidebar-search" class="visually-hidden">Search</label>
<input class="min-w-0 flex-auto bg-transparent border-current border-b-text placeholder-current py-1.5" id="sidebar-search" type="text" name="q" placeholder="Search">
<button class="px-1" type="submit">
<span class="inline-block w-5 h-5"><svg aria-hidden="true" focusable="false" role="presentation" class="icon fill-current icon-search" viewBox="0 0 24 24">
<path fill-rule="evenodd"
d="M10.533 17.438a6.968 6.968 0 01-6.96-6.96 6.968 6.968 0 016.96-6.96 6.968 6.968 0 016.96 6.96 6.968 6.968 0 01-6.96 6.96zm6.949-1.314a8.917 8.917 0 002.01-5.646c0-4.941-4.02-8.96-8.96-8.96-4.94 0-8.96 4.019-8.96 8.96 0 4.94 4.02 8.96 8.96 8.96 2.082 0 3.996-.72 5.52-1.916l4.962 4.96 1.415-1.413-4.947-4.945z">
</path>
</svg></span>
<span class="visually-hidden">Submit</span>
</button>
</div>
</form>
POST /cart
<form action="/cart" method="post" class="relative overflow-y-auto flex-auto" novalidate="">
<div class="grid grid-cols-1 gap-gutter bg-border">
<template x-for="(item, index) in state.items" :key="item.key">
<div class="flex py-4 section-x-padding transition bg-primary-background" :class="{ 'opacity-50 cursor-wait': item.updating }" :data-cart-item-index="(index + 1)" :data-cart-item-key="item.key" data-cart-row="">
<template x-if="!(item.featured_image.url === null)">
<div class="flex-shrink-0 w-10 md:w-20 mr-4">
<a :href="item.url" class="block" aria-hidden="true" tabindex="-1">
<img class="w-full text-transparent" :src="getSizedImageUrl(item.featured_image.url, '110x')" :srcset="getCartImgSrcset(item.featured_image.url)" :width="item.featured_image.width" :height="item.featured_image.height" :alt="item.product_title" sizes="(min-width: 48em) 5rem, 3.5rem">
<pre x-text="item.featured_image.src"></pre>
</a>
</div>
</template>
<div class="flex-auto">
<a class="f--heading font-size--m md--up--font-size--l color--active-text" :href="item.url" x-text="item.product_title"></a>
<template x-if="item.variant_title">
<p class="text-sm" x-text="item.variant_title"></p>
</template>
<template x-if="item.selling_plan_allocation">
<p class="text-sm" x-text="item.selling_plan_allocation.selling_plan.name"></p>
</template>
<template x-for="property in flatProperties(item.properties)" :key="property.name">
<p class="text-sm">
<span x-text="property.name"></span>: <span x-text="property.value"></span>
</p>
</template>
<template x-if="item.line_level_discount_allocations.length">
<ul class="lg:hidden mt-1 text-sm text-primary-accent" aria-label="Discount">
<template x-for="allocation in item.line_level_discount_allocations">
<li class="">
<span x-text="allocation.discount_application.title"></span>
<span class="whitespace-nowrap">−<span x-html="formatMoney(allocation.amount)"></span></span>
</li>
</template>
</ul>
</template>
<div class="flex mt-1 lg:mt-2 items-center">
<button class="w-6 p-1" data-qty-adjust="minus" @click.prevent="qtyAdjust($event, item)" :aria-label="'Remove one ' + item.title">
<svg aria-hidden="true" focusable="false" role="presentation" class="icon fill-current icon-minus" viewBox="0 0 24 24">
<path fill-rule="evenodd" d="M20 11v2H4v-2z"></path>
</svg>
</button>
<input type="text" name="updates[]" class="min-w-0 w-6 py-1 text-center text-sm border-b-text border-current bg-transparent" min="1" aria-label="Quantity/Users" data-qty-input="" pattern="[0-9]*" data-qty-adjust="set"
@keyup.debounce.1000ms="keyupOnInput($event)" @change="qtyAdjust($event, item)" x-model.number="item.quantity" autocomplete="off">
<button class="w-6 p-1" data-qty-adjust="plus" @click.prevent="qtyAdjust($event, item)" :aria-label="'Add one ' + item.title">
<svg aria-hidden="true" focusable="false" role="presentation" class="icon fill-current icon-plus" viewBox="0 0 24 24">
<path fill-rule="evenodd" d="M20 11v2h-7v7h-2v-7H4v-2h7V4h2v7z"></path>
</svg>
</button>
</div>
<button class="none lg:inline-block mt-1 lg:mt-2 text-sm" data-qty-adjust="remove" @click.prevent="qtyAdjust($event, item)">
<small>Remove </small>
<span class="visually-hidden" x-text="item.title"></span>
</button>
</div>
<div class="ml-1 text-right">
<template x-if="item.line_level_discount_allocations.length">
<div>
<span class="visually-hidden">Regular price</span>
<del class="line-through" x-html="formatMoney(item.original_price)"></del>
<span class="visually-hidden">Sale price</span>
<span class="" x-html="formatMoney(item.final_line_price)"></span>
</div>
</template>
<template x-if="!item.line_level_discount_allocations.length">
<span class="" x-html="formatMoney(item.final_line_price)"></span>
</template>
<template x-if="item.unit_price_measurement">
<div class="text-xs">
<span x-html="formatMoney(item.unit_price)"></span> / <span x-text="item.unit_price_measurement.reference_value"></span>
<span x-text="item.unit_price_measurement.reference_unit"></span>
</div>
</template>
<template x-if="item.line_level_discount_allocations.length">
<ul class="hidden lg:block mt-1 text-sm text-primary-accent" aria-label="Discount">
<template x-for="allocation in item.line_level_discount_allocations">
<li class="">
<span x-text="allocation.discount_application.title"></span>
<span class="whitespace-nowrap">−<span x-html="formatMoney(allocation.amount)"></span></span>
</li>
</template>
</ul>
</template>
</div>
</div>
</template>
</div>
<div class="bottom-0 py-4 section-x-padding bg-primary-background border-t-grid border-grid-color">
<div :class="{ 'opacity-50 cursor-wait': updating }">
<template x-if="state.cart_level_discount_applications.length" x-for="application in state.cart_level_discount_applications">
<p class="flex justify-between text-primary-accent">
<span class="visually-hidden">Discount</span>
<span x-text="application.title"></span>
<span class="ml-2" x-html="formatMoney(application.total_allocated_amount)"></span>
</p>
</template>
<p class="flex justify-between">
<span>Subtotal</span>
<span class="ml-2" x-html="formatMoney(state.total_price)"></span>
</p>
<p class="my-2 md:my-4 text-sm accent-links-primary text-right"> Tax included. <a href="/policies/shipping-policy">Shipping</a> calculated at checkout. </p>
<div class="text-right">
<div>
<input type="submit" name="checkout" class="cursor-pointer py-2 px-4 w-full bg-primary-text text-primary-text-overlay hover:bg-primary-accent hover:text-primary-accent-overlay border-primary-text hover:border-primary-accent border-text"
:disabled="updating" value="Check out">
</div>
</div>
</div>
</div>
</form>
GET /search
<form action="/search" method="get" class="input-group search" role="search">
<label for="search" class="hidden">Submit</label>
<div class="flex items-center justify-between">
<button class="py-2 mr-4" aria-label="Submit" type="submit">
<span class="inline-block w-5 h-5 align-middle"><svg aria-hidden="true" focusable="false" role="presentation" class="icon fill-current icon-search" viewBox="0 0 24 24">
<path fill-rule="evenodd"
d="M10.533 17.438a6.968 6.968 0 01-6.96-6.96 6.968 6.968 0 016.96-6.96 6.968 6.968 0 016.96 6.96 6.968 6.968 0 01-6.96 6.96zm6.949-1.314a8.917 8.917 0 002.01-5.646c0-4.941-4.02-8.96-8.96-8.96-4.94 0-8.96 4.019-8.96 8.96 0 4.94 4.02 8.96 8.96 8.96 2.082 0 3.996-.72 5.52-1.916l4.962 4.96 1.415-1.413-4.947-4.945z">
</path>
</svg></span>
<span class="visually-hidden">Submit</span>
</button>
<input x-ref="searchInput" id="search" type="text" name="q" value="" placeholder="Search" class="placeholder-current font-body w-full block bg-transparent" aria-label="Search" data-search-input="">
<button class="py-2 ml-4" @click="searchOpen = false" type="button">
<span class="visually-hidden">Close</span>
<span class="inline-block w-5 h-5 align-middle"><svg aria-hidden="true" focusable="false" role="presentation" class="icon fill-current icon-close" viewBox="0 0 24 24">
<path fill-rule="evenodd" d="M18.364 4.222l1.414 1.414L13.414 12l6.364 6.364-1.414 1.414L12 13.414l-6.364 6.364-1.414-1.414L10.586 12 4.222 5.636l1.414-1.414L12 10.586z"></path>
</svg></span>
</button>
</div>
</form>
POST /cart/add
<form method="post" action="/cart/add" id="product_form_7148319375553" accept-charset="UTF-8" class="shopify-product-form" enctype="multipart/form-data" data-product-form="" data-product-handle="classic-font-bundle" data-enable-history-state="true"
x-ref="productForm"><input type="hidden" name="form_type" value="product"><input type="hidden" name="utf8" value="✓">
<div class="no-js hidden">
<label class="block mt-theme" for="variant_template--15047445840065__main">Variant</label>
<select x-ref="singleVariantSelector" name="id" id="variant_template--15047445840065__main" class="mt-2 appearance-none rounded-none bg-primary-background text-primary-text border-b-grid py-1 border-primary-text text-primary-text pr-6">
<option selected="selected" x-bind:selected="currentVariantId === 41358494499009" value="41358494499009"> Desktop (Most Popular) </option>
<option x-bind:selected="currentVariantId === 41358494531777" value="41358494531777"> Bundle License: Desktop & Webfont S (Recommended) </option>
</select>
</div>
<div class="add-to-cart-container mt-8 lg:w-3/4"><button id="addToCartButton" @click="$store.drawer.cartOpener = $event.currentTarget"
class="add-to-cart px-1 py-2 w-full uppercase bg-primary-text text-primary-text-overlay hover:bg-primary-accent hover:text-primary-accent-overlay border-primary-text hover:border-primary-accent border-text" type="submit"
:class="{ 'opacity-50 cursor-not-allowed': !currentVariantAvailable }" :disabled="!currentVariantAvailable || loading">
<span class="no-js"> Add to cart </span>
<template x-if="current_variant">
<div>
<template x-if="currentVariantAvailable">
<span>Add to cart</span>
</template>
<template x-if="!currentVariantAvailable">
<span>Sold out</span>
</template>
</div>
</template>
<div>
<template x-if="currentVariantAvailable">
<span>Add to cart</span>
</template>
<span>Add to cart</span>
<template x-if="!currentVariantAvailable">
<span>Sold out</span>
</template>
</div>
<template x-if="!current_variant">
<span> Unavailable</span>
</template>
</button></div>
</form>
POST
<form method="post" id="new-review-form_7148319375553" class="new-review-form" aria-expanded="false" onsubmit="event.preventDefault(); StampedFn.submitForm(this);" style="display: none;border: 1px solid #dddddd4d;padding: 15px"> <input type="hidden"
name="productId" value="7148319375553">
<div class="stamped-form-title" style=" display:none;">Write a review</div>
<fieldset class="stamped-form-contact">
<legend style="display:none;">Author</legend>
<div class="stamped-form-contact-name"> <label class="stamped-form-label" for="review_author_7148319375553">Name</label> <input class="stamped-form-input stamped-form-input-text " id="review_author_7148319375553" type="text" name="author"
required="" value="" placeholder="Enter your name" autocomplete="name"> </div>
<div class="stamped-form-contact-email"> <label class="stamped-form-label" for="review_email_7148319375553">Email</label> <input class="stamped-form-input stamped-form-input-email " id="review_email_7148319375553" type="email" name="email"
required="" value="" placeholder="john.smith@example.com" autocomplete="email"> </div>
<div class="stamped-form-contact-location"> <label class="stamped-form-label" for="review_location_7148319375553">Location</label> <input class="stamped-form-input stamped-form-input-text " id="review_location_7148319375553" type="text"
name="location" value="" placeholder="e.g Paris, France" autocomplete="shipping country"> </div>
</fieldset>
<fieldset class="stamped-form-review">
<legend style="display:none;">Rating</legend>
<div class="stamped-form-review-rating"> <label class="stamped-form-label" for="reviewRating">Rating</label> <input type="text" id="reviewRating" name="reviewRating"
style="font-size: 0px; border: none; height: 1px; width: 1px; margin: 0; padding: 0; line-height: 0px; min-height: 0px;" required="">
<div class="stamped-form-input stamped-starrating">
<a href="#" onclick="StampedFn.setRating(this);return false;" onkeydown="StampedFn.setRating(this);return false;" role="button" tabindex="0" class="stamped-fa stamped-fa-star-o" data-value="1"><span style="display:none;">1</span></a>
<a href="#" onclick="StampedFn.setRating(this);return false;" onkeydown="StampedFn.setRating(this);return false;" role="button" tabindex="0" class="stamped-fa stamped-fa-star-o" data-value="2"><span style="display:none;">2</span></a>
<a href="#" onclick="StampedFn.setRating(this);return false;" onkeydown="StampedFn.setRating(this);return false;" role="button" tabindex="0" class="stamped-fa stamped-fa-star-o" data-value="3"><span style="display:none;">3</span></a>
<a href="#" onclick="StampedFn.setRating(this);return false;" onkeydown="StampedFn.setRating(this);return false;" role="button" tabindex="0" class="stamped-fa stamped-fa-star-o" data-value="4"><span style="display:none;">4</span></a>
<a href="#" onclick="StampedFn.setRating(this);return false;" onkeydown="StampedFn.setRating(this);return false;" role="button" tabindex="0" class="stamped-fa stamped-fa-star-o" data-value="5"><span style="display:none;">5</span></a> </div>
</div>
<div class="stamped-form-review-title"> <label class="stamped-form-label" for="review_title_7148319375553">Title of Review</label> <input class="stamped-form-input stamped-form-input-text" id="review_title_7148319375553" type="text"
name="reviewTitle" required="" value="" placeholder="Give your review a title"> </div>
<div class="stamped-form-review-body"> <label class="stamped-form-label" for="review_body_7148319375553">How was your overall experience?</label>
<div class="stamped-form-input"> <textarea class="stamped-form-input stamped-form-input-textarea" id="review_body_7148319375553" data-product-id="7148319375553" name="reviewMessage" required="" rows="10" maxlength="5000"></textarea> </div>
</div>
</fieldset>
<fieldset class="stamped-form-custom-questions">
<legend style="display:none;">Questions</legend>
<div class="stamped-form-review-recommend">
<div class="stamped-form-review-recommend-label">Do you recommend this product?</div> <label class="stamped-form-label stamped-form-label-recommend-yes"> <input class="stamped-form-input" type="radio" name="reviewRecommendProduct" value="true"
aria-label="Yes, I recommend this product"> Yes </label> <label class="stamped-form-label stamped-form-label-recommend-no"> <input class="stamped-form-input" type="radio" name="reviewRecommendProduct" value="false"
aria-label="No, I do not recommend this product"> No </label>
</div>
</fieldset>
<fieldset class="stamped-form-actions">
<legend style="display:none;">Photos</legend> <span class="stamped-file-holder"> </span> <span class="stamped-file-uploader" style="display:none;"> <label for="stamped-file-uploader-input"> <span style="display:none;">Upload</span> <input
id="stamped-file-uploader-input" type="file" name="stamped-file-uploader-input" class="stamped-file-uploader-input" multiple="" data-product-id="7148319375553" style="display:none;"> <span class="stamped-file-uploader-btn"
style="border:1px solid #333;padding: 6px 10px; font-size:13px; border-radius: .3em;"> <i class="stamped-fa stamped-fa-camera"></i> <span class="stamped-file-uploader-btn-label2"></span> </span> </label> </span> <span
class="stamped-file-loading hide" style="display:none;"> <i class="fa fa-spinner fa-spin"></i> </span> <input id="stamped-button-submit" type="submit" class="stamped-button stamped-button-primary button button-primary btn btn-primary"
value="Submit">
</fieldset>
</form>
Text Content
Skip to content Menu Close * Home * Fonts * NEW! Posters * About * Magazine * More * Custom Fonts * FAQ * Licenses * Instagram * Instagram * Pinterest * Licenses * Contact * Creative Market * MyFonts * Gumroad * YouWorkForThem * Terms of Service * Refund policy * Log in * Create account Search Submit * Pinterest * Instagram YOUR CART - 0 ITEMS Close Your cart is currently empty. Enable cookies to use the shopping cart : − Remove Regular price Sale price / − Discount Subtotal Tax included. Shipping calculated at checkout. DESKTOP (MOST POPULAR) Close Font Bundles 50% OFF — Click here — Font Bundles 50% OFF — Click here — Font Bundles 50% OFF — Click here — Font Bundles 50% OFF — Click here — SG Type Home Fonts NEW! Posters About Magazine More * Custom Fonts * FAQ * Licenses * Instagram Log in Search Submit Submit Close 0 items SG Type Menu 0 items * * * * * * * * * * * * * * * Previous slide Next slide THE CLASSIC COLLECTION - FONT BUNDLE 14 Reviews Regular price $57.00 Sale price $114.00 Sale price $114.00 Unit price / per Tax included What license should I choose? Close LICENSE OVERVIEW Explore our license and see which one fits your needs best. Do you have questions regarding licensing? Check out our FAQ page here. ① DESKTOP LICENSE Use this license for Desktop, Print and Rasterized (Flattened) static images on websites. ✔ You can ✘ You can not * Install the Font Software on one (1) computer or device (You can at any time buy more licenses according to your users and/or computers) * Use for unlimited personal and commercial projects * Use to create unlimited physical end products for sale * Use the Font for (un-editable, non-embedded) marketing materials such as invitations, business cards, logos, branding, greeting cards, packaging designs, static (rasterized / flattened) images on web sites, apparel, books, stationary. * Use the Font for a logo, provided your organizations yearly gross revenue does not exceed 1 (one) million dollars (or the equivalent amount in your currency).(Read more) * Use for websites, apps, or video games (only as rasterized / flattened image) * Use for digital Ads (only as rasterized / flattened image) * Use for social media (only as rasterized / flattened image) * Embed the Font in a website, app or any other (only rasterized / flattened images are allowed) * Resell, sublicense or share the Font with others including clients (Read more) * Make Font files available for download * Modify the Font files and / or sell modified versions of the font files * Create editable templates available for resale containing the Font * Claim the Font, as is or any derivative thereof, as your own work * Embed the Font on a third party/Print on Demand website where third parties who are not licensed are able to work with the Font Explore the full license agreement here ② WEBFONT LICENSE Use this license for embedding fonts on your website(s), within the agreed upon pageview limit. ✓ You can ✘ You cannot * Install the Font Software on a single web server and domain provided that both the web server and domain are either owned or controlled by you. * Use the Font using the @font-face CSS selector only provided that an appropriate reference to the copyright and legal information is entered as comments in the production code of the website. * Use the Font limited to the number of page views of your website at the time of license purchase as follows and is subject to You ensuring that your page views do not exceed that of the license purchased: 1. Small website (S): 0-10.000 page views per month 2. Medium website (M): 10.000-250.000 page views per month 3. Large website (L): 250.000-1.000.000 page views per month 4. Unlimited website: 1.000.000 – unlimited page views per month As soon as your views exceed the agreed upon page view limit, you agree to purchase another license according to your new needs. * Convert the font yourself to a secure WOFF2 file. The font must not be able to be installed on the desktop by users of your site. * Install the font on your computer and/or use the font to create marketing materials, products or other images (an additional desktop license is needed) * Resell, sublicense or share the Font with others including clients (Read more) * Make Font files available for download * Modify the Font files and/or sell modified versions of the font files * Create editable templates available for resale containing the Font * Claim the Font, as is or any derivative thereof, as your own work * Embed the Font on a third party/Print on Demand website where third parties who are not licensed are able to work with the Font Explore the full license agreement here ③ E-PUB LICENSE Use this license for the creation of one (1) e-publication. ✓ You can ✘ You cannot * Use for creation of one e-publication or e-book (one title per purchase) * Embed the Font in the e-publication or e-book (not extractable) * Install the font on your computer and/or use the font to create marketing materials, products or other images (an additional desktop license is needed) * Embed the font on a website (an additional Webfont license is needed) * Resell, sublicense or share the Font with others including clients (Read more) * Make Font files available for download * Modify the Font files and/or sell modified versions of the font files * Create editable templates available for resale containing the Font * Claim the Font, as is or any derivative thereof, as your own work * Embed the Font on a third party/Print on Demand website where third parties who are not licensed are able to work with the Font Explore the full license agreement here ④ APP LICENSE Use this license for the creation of one (1) e-publication. ✓ You can ✘ You cannot * Use the Font in mobile, desktop or video game application (one app per purchased license) * Embed the Font in the application (not extractable) * Install the font on your computer and/or use the font to create marketing materials, products or other images (an additional desktop license is needed) * Embed the font on a website (an additional Webfont license is needed) * Resell, sublicense or share the Font with others including clients (Read more) * Make Font files available for download * Modify the Font files and/or sell modified versions of the font files * Create editable templates available for resale containing the Font * Claim the Font, as is or any derivative thereof, as your own work * Embed the Font on a third party/Print on Demand website where third parties who are not licensed are able to work with the Font Explore the full license agreement here If you are looking for other licenses from us for one of our retail fonts please contact us. What license should I choose? Font License: Desktop (Most Popular) Bundle License: Desktop & Webfont S (Recommended) Variant Desktop (Most Popular) Bundle License: Desktop & Webfont S (Recommended) Add to cart Add to cart Sold out Add to cart Add to cart Sold out Unavailable The Classic Font Bundle includes 6 full font packages of our all time bestselling fonts to a phenomenal price of only $57 $114.00. Including Sauvage, Astralaga Bold, Celesse, Apricosa, Brightglow and Chatoyer. The font styles range from vintage to classic to ornate and art deco inspired. All our typefaces include Open Type features such as alternate letter forms with decorative swashes and ligatures. The bundle comes with 16 free logo templates - fully customizable. Including Free Lifetime Updates, Commercial License and Best Price Guarantee Following products are combined in this bundle: Chatoyer — Price $19 Celesse — Price $19 Sauvage — Price $19 (Award winning typeface) Astralaga Bold — Price $19 Apricosa — Price $19 Brightglow — Price $19 = Total Pack Value $114 WHAT’S INCLUDED IN YOUR DOWNLOAD FONT FILES ↪ Apricosa-regular.otf ↪ Apricosa-regular.ttf ↪ Sauvage-regular.otf ↪ Sauvage-regular.ttf ↪ Astralaga-bold.otf ↪ Astralaga-bold.ttf ↪ Chatoyer-regular.otf ↪ Chatoyer-regular.ttf ↪ Celesse-regular.otf ↪ Celesse-regular.ttf ↪ Brightglow-regular.otf ↪ Brightglow-regular.ttf IF YOU PURCHASE A WEBFONT LICENSE YOUR DOWNLOAD ALSO INCLUDES ↪ Apricosa-regular.woff ↪ Sauvage-regular.woff ↪ Astralaga-bold.woff ↪ Chatoyer-regular.woff ↪ Celesse-regular.woff ↪ Brightglow-regular.woff LOGOS ↪ Apricosa-Logos.eps ↪ Apricosa-Logos.ai ↪ Apricosa-Logos.psd ↪ Sauvage-Logos.eps ↪ Sauvage-Logos.ai ↪ Sauvage-Logos.psd ↪ Astralaga-bold-Logos.eps ↪ Astralaga-bold-Logos.ai ↪ Astralaga-bold-Logos.psd ↪ Celesse-Logos.eps ↪ Celesse-Logos.ai ↪ Celesse-Logos.psd ↪ Brighglow-Logos.eps ↪ Brighglow-Logos.ai ↪ Brighglow-Logos.psd ↪ Chatoyer-Logos.eps ↪ Chatoyer-Logos.ai ↪ Chatoyer-Logos.psd PDFs Character Sets (handy PDF showing all included letters) Sweetest Goods Font Guide (a practical guide on how to access ligatures by Sweetest Goods) FONT FILES ↪ Apricosa-regular.otf ↪ Apricosa-regular.ttf ↪ Sauvage-regular.otf ↪ Sauvage-regular.ttf ↪ Astralaga-bold.otf ↪ Astralaga-bold.ttf ↪ Chatoyer-regular.otf ↪ Chatoyer-regular.ttf ↪ Celesse-regular.otf ↪ Celesse-regular.ttf ↪ Brightglow-regular.otf ↪ Brightglow-regular.ttf IF YOU PURCHASE A WEBFONT LICENSE YOUR DOWNLOAD ALSO INCLUDES ↪ Apricosa-regular.woff ↪ Sauvage-regular.woff ↪ Astralaga-bold.woff ↪ Chatoyer-regular.woff ↪ Celesse-regular.woff ↪ Brightglow-regular.woff LOGOS ↪ Apricosa-Logos.eps ↪ Apricosa-Logos.ai ↪ Apricosa-Logos.psd ↪ Sauvage-Logos.eps ↪ Sauvage-Logos.ai ↪ Sauvage-Logos.psd ↪ Astralaga-bold-Logos.eps ↪ Astralaga-bold-Logos.ai ↪ Astralaga-bold-Logos.psd ↪ Celesse-Logos.eps ↪ Celesse-Logos.ai ↪ Celesse-Logos.psd ↪ Brighglow-Logos.eps ↪ Brighglow-Logos.ai ↪ Brighglow-Logos.psd ↪ Chatoyer-Logos.eps ↪ Chatoyer-Logos.ai ↪ Chatoyer-Logos.psd PDFs Character Sets (handy PDF showing all included letters) Sweetest Goods Font Guide (a practical guide on how to access ligatures by Sweetest Goods) PLEASE NOTE After checkout you immediately receive an email with a download link to your personal files. Most of the fonts require advanced graphic software that supports Open Type Features like Adobe (Illustrator, InDesign, Photoshop), Affinity (Photo, Designer, Publisher), Corel Draw or similar software. We can’t guarantee full usability in basic text software like Microsoft Word or similar. Read about our license agreement here. For any questions please check our FAQ. After checkout you immediately receive an email with a download link to your personal files. Most of the fonts require advanced graphic software that supports Open Type Features like Adobe (Illustrator, InDesign, Photoshop), Affinity (Photo, Designer, Publisher), Corel Draw or similar software. We can’t guarantee full usability in basic text software like Microsoft Word or similar. Read about our license agreement here. For any questions please check our FAQ. Close Previous slide Next slide Test fonts below☟Test fonts below☟Test fonts below☟Test fonts below☟ Test fonts below☟Test fonts below☟Test fonts below☟Test fonts below☟ Test fonts below☟Test fonts below☟Test fonts below☟Test fonts below☟ Test fonts below☟Test fonts below☟Test fonts below☟Test fonts below☟ Sauvage Regular Chatoyer Regular Celesse Regular Astralaga Bold Apricosa Regular Brightglow Regular YOU MAY ALSO LIKE * The Modern Collection - Font Bundle On sale The Modern Collection - Font Bundle 3 Reviews Regular price$114.00 Sale price On sale from $57.00 * Vultura On sale Vultura 1 Review Regular price$38.00 Sale price On sale from $23.00 * Sovana Sovana 2 Reviews from $19.00 * Askja Askja 4 Reviews from $19.00 Customer Reviews 5.0 Based on 14 Reviews 5 ★ 100% 14 4 ★ 0% 0 3 ★ 0% 0 2 ★ 0% 0 1 ★ 0% 0 Customer Photos i i i Write a Review Ask a Question * Reviews * Questions Write a review Author Name Email Location Rating Rating 1 2 3 4 5 Title of Review How was your overall experience? Questions Do you recommend this product? Yes No Photos Upload Thank you for submitting a review! Your input is very much appreciated. Share it with your friends so they can enjoy it too! FacebookTwitter Be the first to review this item SortWith Photos Most Recent Highest Rating Lowest Rating Most Helpful Filter Reviews: × SortWith Photos Most Recent Highest Rating Lowest Rating Most Helpful Clear filter More Filters A 08/04/2023 Anonymous Germany I recommend this product GREAT FONT PACKAGE Really good, I liked the simplicity of the dowload and the font variety in the package. The Classic Collection - Font Bundle Desktop (Most Popular) Was this helpful? 0 0 EP 05/01/2023 Emily P. Canada I recommend this product LOVE THESE! The fonts are all beautiful and so versatile. A great new addition to my font catalog. The Classic Collection - Font Bundle Desktop (Most Popular) Was this helpful? 0 1 MM 03/11/2023 Melissa M. Canada I recommend this product EXACTLY WHAT I WAS LOOKING FOR! The classic collection has a little bit of everything I need for my wedding invitation business - some vintage, some modern, and a lot of personality. These fonts have stolen the show! The Classic Collection - Font Bundle Desktop (Most Popular) Was this helpful? 0 0 A 01/09/2023 Anonymous Spain I recommend this product GOOD PACKAGE One weight for each family so is perfect for titles and more… The Classic Collection - Font Bundle Desktop (Most Popular) Was this helpful? 3 0 MA 12/19/2022 Michelle A. Canada I recommend this product A DESIGNER’S MUST HAVE A great classic font that should be part of every designer’s collection. The Classic Collection - Font Bundle Desktop (Most Popular) Was this helpful? 1 1 A 10/14/2022 Anonymous Switzerland I recommend this product MY NEW FAVOURITE FONTS!!! Great experience, a top guide and the dopest ligatures in the universe The Classic Collection - Font Bundle Desktop (Most Popular) Was this helpful? 1 1 A 08/10/2022 Anonymous Brazil I recommend this product IN LOVE Loved all fonts The Classic Collection - Font Bundle Desktop (Most Popular) Was this helpful? 1 0 09/01/2022 SWEETEST GOODS Hi there! We are so glad that you like all fonts. :) ZK 07/30/2022 Zuhura K. Canada I recommend this product WORTH BUYING! I think at this point these will be my go to fonts when logo designing. Because it’s so versatile and classic! Love em all The Classic Collection - Font Bundle Desktop (Most Popular) Was this helpful? 1 1 08/01/2022 SWEETEST GOODS Hi Zuhura! Thank you very much for this glowing review. We are so glad that you like our fonts. Don't forget to tag us in your designs :) Cheers, the Sweetest Goods team A 07/18/2022 Anonymous Australia I recommend this product GREAT COLLECTION Great font collection and the included ligatures make customising type super easy. The Classic Collection - Font Bundle Desktop (Most Popular) Was this helpful? 2 1 07/18/2022 SWEETEST GOODS Hi there, Thank you so much for your great review. We're glad you like it. :) Cheers, the team at Sweetest Goods A 06/22/2022 Anonymous United States I recommend this product BEAUTIFUL SET Easy to use which was great The Classic Collection - Font Bundle Bundle License: Desktop & Webfont S (Recommended) Was this helpful? 2 0 06/23/2022 SWEETEST GOODS Hi there! Thank you for your review. Have fun designing! * < * << * 1 * 2 * >> * > SG Type We design typefaces that inspire. All our fonts are hand crafted with the upmost care. Enjoy & spread the love. 💖 Happy creating, everyone. * Instagram * Pinterest * Licenses * Contact * Creative Market * MyFonts * Gumroad * YouWorkForThem * Terms of Service * Refund policy * Privacy Policy * Refund Policy * Terms of Service * Legal Notice * Shipping © 2023, SG Type. Powered by Shopify PAYMENT METHODS * American Express * Apple Pay * Google Pay * Maestro * Mastercard * PayPal * Shop Pay * Union Pay * Visa * Choosing a selection results in a full page refresh. * Press the space key then arrow keys to make a selection.