Quick post noting the bash command to mount a FAT formatted USB (or any other) drive, with the mount owned by the current user, lsblk is your friend for finding the device for the drive.

sudo mount /dev/sda1 /mnt -o uid=$( id -u ),gid=$( id -g )