Formats a date in a long format (e.g., "April 10, 2025").
static String formatLong(DateTime date) { return DateFormat.yMMMMd().format(date); }