To access styling information, first parse the styles from the archive using parseStyles(). You can then use format(in:) and font(in:) on a Cell instance, passing the parsed Styles object.
Note: Not all XLSX files contain style information; be prepared to handle errors from parseStyles().
// Fetch fonts
let styles = try file.parseStyles()
let fonts = styles.fonts?.items.compactMap { $0.name?.value }
// Get formatting for a specific cell
let cell = worksheet.data?.rows.first?.cells.first
let format = cell?.format(in: styles)
let font = cell?.font(in: styles)
let styles = try file.parseStyles()
let fonts = styles.fonts?.items.compactMap { $0.name?.value }
let format = worksheet.data?.rows.first?.cells.first?.format(in: styles)
let font = worksheet.data?.rows.first?.cells.first?.font(in: styles)