Messing with mapping is borderline moving into real ORM land. Instead of fighting with it and keeping Dapper in its true simple (fast) form, just modify your SQL slightly like so:
var sql = @"select top 1 person_id as PersonId,FirstName,LastName from Person";