package com.airbnb.lottie.model; import android.graphics.Typeface; /* loaded from: classes.dex */ public class Font { private final float ascent; private final String family; private final String name; private final String style; private Typeface typeface; public Font(String str, String str2, String str3, float f) { this.family = str; this.name = str2; this.style = str3; this.ascent = f; } public void setTypeface(Typeface typeface) { this.typeface = typeface; } public Typeface getTypeface() { return this.typeface; } public String getStyle() { return this.style; } public String getName() { return this.name; } public String getFamily() { return this.family; } float getAscent() { return this.ascent; } }